@sphereon/ssi-sdk.siopv2-oid4vp-rp-auth 0.33.0 → 0.33.1-feature.vcdm2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPInstance.js +95 -117
- package/dist/RPInstance.js.map +1 -1
- package/dist/agent/SIOPv2RP.js +207 -231
- package/dist/agent/SIOPv2RP.js.map +1 -1
- package/dist/functions.js +166 -190
- package/dist/functions.js.map +1 -1
- package/dist/index.js +3 -21
- package/dist/index.js.map +1 -1
- package/dist/types/ISIOPv2RP.js +2 -5
- package/dist/types/ISIOPv2RP.js.map +1 -1
- package/package.json +11 -11
package/dist/functions.js
CHANGED
|
@@ -1,207 +1,185 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.getRequestVersion = getRequestVersion;
|
|
13
|
-
exports.getPresentationVerificationCallback = getPresentationVerificationCallback;
|
|
14
|
-
exports.createRPBuilder = createRPBuilder;
|
|
15
|
-
exports.signCallback = signCallback;
|
|
16
|
-
exports.createRP = createRP;
|
|
17
|
-
exports.getSigningAlgo = getSigningAlgo;
|
|
18
|
-
const did_auth_siop_1 = require("@sphereon/did-auth-siop");
|
|
19
|
-
const oid4vc_common_1 = require("@sphereon/oid4vc-common");
|
|
20
|
-
const ssi_sdk_ext_did_utils_1 = require("@sphereon/ssi-sdk-ext.did-utils");
|
|
21
|
-
const ssi_sdk_ext_identifier_resolution_1 = require("@sphereon/ssi-sdk-ext.identifier-resolution");
|
|
22
|
-
const ssi_types_1 = require("@sphereon/ssi-types");
|
|
23
|
-
const events_1 = require("events");
|
|
24
|
-
const ssi_sdk_core_1 = require("@sphereon/ssi-sdk.core");
|
|
25
|
-
function getRequestVersion(rpOptions) {
|
|
1
|
+
import { InMemoryRPSessionManager, PassBy, PropertyTarget, ResponseMode, ResponseType, RevocationVerification, RP, Scope, SubjectType, SupportedVersion, } from '@sphereon/did-auth-siop';
|
|
2
|
+
import { SigningAlgo } from '@sphereon/oid4vc-common';
|
|
3
|
+
import { getAgentDIDMethods, getAgentResolver } from '@sphereon/ssi-sdk-ext.did-utils';
|
|
4
|
+
import { isExternalIdentifierOIDFEntityIdOpts, isManagedIdentifierDidOpts, isManagedIdentifierDidResult, isManagedIdentifierX5cOpts, } from '@sphereon/ssi-sdk-ext.identifier-resolution';
|
|
5
|
+
import { CredentialMapper } from '@sphereon/ssi-types';
|
|
6
|
+
import { EventEmitter } from 'events';
|
|
7
|
+
import { defaultHasher } from '@sphereon/ssi-sdk.core';
|
|
8
|
+
export function getRequestVersion(rpOptions) {
|
|
26
9
|
if (Array.isArray(rpOptions.supportedVersions) && rpOptions.supportedVersions.length > 0) {
|
|
27
10
|
return rpOptions.supportedVersions[0];
|
|
28
11
|
}
|
|
29
|
-
return
|
|
12
|
+
return SupportedVersion.JWT_VC_PRESENTATION_PROFILE_v1;
|
|
30
13
|
}
|
|
31
14
|
function getWellKnownDIDVerifyCallback(siopIdentifierOpts, context) {
|
|
32
15
|
return siopIdentifierOpts.wellknownDIDVerifyCallback
|
|
33
16
|
? siopIdentifierOpts.wellknownDIDVerifyCallback
|
|
34
|
-
: (args) =>
|
|
35
|
-
const result =
|
|
17
|
+
: async (args) => {
|
|
18
|
+
const result = await context.agent.cvVerifyCredential({
|
|
36
19
|
credential: args.credential,
|
|
37
20
|
fetchRemoteContexts: true,
|
|
38
21
|
});
|
|
39
22
|
return { verified: result.result };
|
|
40
|
-
}
|
|
23
|
+
};
|
|
41
24
|
}
|
|
42
|
-
function getPresentationVerificationCallback(idOpts, context) {
|
|
43
|
-
function presentationVerificationCallback(args, // FIXME any
|
|
25
|
+
export function getPresentationVerificationCallback(idOpts, context) {
|
|
26
|
+
async function presentationVerificationCallback(args, // FIXME any
|
|
44
27
|
presentationSubmission) {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
if (ssi_types_1.CredentialMapper.isSdJwtEncoded(args)) {
|
|
48
|
-
const result = yield context.agent.verifySdJwtPresentation({
|
|
49
|
-
presentation: args,
|
|
50
|
-
kb: true,
|
|
51
|
-
});
|
|
52
|
-
// fixme: investigate the correct way to handle this
|
|
53
|
-
return { verified: !!result.payload };
|
|
54
|
-
}
|
|
55
|
-
if (ssi_types_1.CredentialMapper.isMsoMdocOid4VPEncoded(args)) {
|
|
56
|
-
// TODO Funke reevaluate
|
|
57
|
-
if (context.agent.mdocOid4vpRPVerify === undefined) {
|
|
58
|
-
return Promise.reject('ImDLMdoc agent plugin must be enabled to support MsoMdoc types');
|
|
59
|
-
}
|
|
60
|
-
if (presentationSubmission !== undefined && presentationSubmission !== null) {
|
|
61
|
-
const verifyResult = yield context.agent.mdocOid4vpRPVerify({
|
|
62
|
-
vp_token: args,
|
|
63
|
-
presentation_submission: presentationSubmission,
|
|
64
|
-
});
|
|
65
|
-
return { verified: !verifyResult.error };
|
|
66
|
-
}
|
|
67
|
-
throw Error(`mdocOid4vpRPVerify(...) method requires a presentation submission`);
|
|
68
|
-
}
|
|
69
|
-
const result = yield context.agent.verifyPresentation({
|
|
28
|
+
if (CredentialMapper.isSdJwtEncoded(args)) {
|
|
29
|
+
const result = await context.agent.verifySdJwtPresentation({
|
|
70
30
|
presentation: args,
|
|
71
|
-
|
|
72
|
-
domain: (_a = (yield context.agent.identifierManagedGet(idOpts)).kid) === null || _a === void 0 ? void 0 : _a.split('#')[0],
|
|
31
|
+
kb: true,
|
|
73
32
|
});
|
|
74
|
-
|
|
33
|
+
// fixme: investigate the correct way to handle this
|
|
34
|
+
return { verified: !!result.payload };
|
|
35
|
+
}
|
|
36
|
+
if (CredentialMapper.isMsoMdocOid4VPEncoded(args)) {
|
|
37
|
+
// TODO Funke reevaluate
|
|
38
|
+
if (context.agent.mdocOid4vpRPVerify === undefined) {
|
|
39
|
+
return Promise.reject('ImDLMdoc agent plugin must be enabled to support MsoMdoc types');
|
|
40
|
+
}
|
|
41
|
+
if (presentationSubmission !== undefined && presentationSubmission !== null) {
|
|
42
|
+
const verifyResult = await context.agent.mdocOid4vpRPVerify({
|
|
43
|
+
vp_token: args,
|
|
44
|
+
presentation_submission: presentationSubmission,
|
|
45
|
+
});
|
|
46
|
+
return { verified: !verifyResult.error };
|
|
47
|
+
}
|
|
48
|
+
throw Error(`mdocOid4vpRPVerify(...) method requires a presentation submission`);
|
|
49
|
+
}
|
|
50
|
+
const result = await context.agent.verifyPresentation({
|
|
51
|
+
presentation: args,
|
|
52
|
+
fetchRemoteContexts: true,
|
|
53
|
+
domain: (await context.agent.identifierManagedGet(idOpts)).kid?.split('#')[0],
|
|
75
54
|
});
|
|
55
|
+
return { verified: result.verified };
|
|
76
56
|
}
|
|
77
57
|
return presentationVerificationCallback;
|
|
78
58
|
}
|
|
79
|
-
function createRPBuilder(args) {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
if (!dcqlQuery && presentationDefinitionItem.dcqlPayload) {
|
|
100
|
-
dcqlQuery = presentationDefinitionItem.dcqlPayload; // cast from DcqlQueryREST back to valibot DcqlQuery
|
|
101
|
-
}
|
|
59
|
+
export async function createRPBuilder(args) {
|
|
60
|
+
const { rpOpts, pexOpts, context } = args;
|
|
61
|
+
const { identifierOpts } = rpOpts;
|
|
62
|
+
let definition = args.definition;
|
|
63
|
+
let dcqlQuery = args.dcql;
|
|
64
|
+
if (!definition && pexOpts && pexOpts.definitionId) {
|
|
65
|
+
const presentationDefinitionItems = await context.agent.pdmGetDefinitions({
|
|
66
|
+
filter: [
|
|
67
|
+
{
|
|
68
|
+
definitionId: pexOpts.definitionId,
|
|
69
|
+
version: pexOpts.version,
|
|
70
|
+
tenantId: pexOpts.tenantId,
|
|
71
|
+
},
|
|
72
|
+
],
|
|
73
|
+
});
|
|
74
|
+
if (presentationDefinitionItems.length > 0) {
|
|
75
|
+
const presentationDefinitionItem = presentationDefinitionItems[0];
|
|
76
|
+
definition = presentationDefinitionItem.definitionPayload;
|
|
77
|
+
if (!dcqlQuery && presentationDefinitionItem.dcqlPayload) {
|
|
78
|
+
dcqlQuery = presentationDefinitionItem.dcqlPayload; // cast from DcqlQueryREST back to valibot DcqlQuery
|
|
102
79
|
}
|
|
103
80
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
},
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
81
|
+
}
|
|
82
|
+
const didMethods = identifierOpts.supportedDIDMethods ?? (await getAgentDIDMethods(context));
|
|
83
|
+
const eventEmitter = rpOpts.eventEmitter ?? new EventEmitter();
|
|
84
|
+
const defaultClientMetadata = {
|
|
85
|
+
// FIXME: All of the below should be configurable. Some should come from builder, some should be determined by the agent.
|
|
86
|
+
// For now it is either preconfigured or everything passed in as a single object
|
|
87
|
+
idTokenSigningAlgValuesSupported: [SigningAlgo.EDDSA, SigningAlgo.ES256, SigningAlgo.ES256K], // added newly
|
|
88
|
+
requestObjectSigningAlgValuesSupported: [SigningAlgo.EDDSA, SigningAlgo.ES256, SigningAlgo.ES256K], // added newly
|
|
89
|
+
responseTypesSupported: [ResponseType.ID_TOKEN], // added newly
|
|
90
|
+
client_name: 'Sphereon',
|
|
91
|
+
vpFormatsSupported: {
|
|
92
|
+
jwt_vc: { alg: ['EdDSA', 'ES256K'] },
|
|
93
|
+
jwt_vp: { alg: ['ES256K', 'EdDSA'] },
|
|
94
|
+
},
|
|
95
|
+
scopesSupported: [Scope.OPENID_DIDAUTHN],
|
|
96
|
+
subjectTypesSupported: [SubjectType.PAIRWISE],
|
|
97
|
+
subject_syntax_types_supported: didMethods.map((method) => `did:${method}`),
|
|
98
|
+
passBy: PassBy.VALUE,
|
|
99
|
+
};
|
|
100
|
+
const resolver = rpOpts.identifierOpts.resolveOpts?.resolver ??
|
|
101
|
+
getAgentResolver(context, {
|
|
123
102
|
resolverResolution: true,
|
|
124
103
|
localResolution: true,
|
|
125
|
-
uniresolverResolution:
|
|
104
|
+
uniresolverResolution: rpOpts.identifierOpts.resolveOpts?.noUniversalResolverFallback !== true,
|
|
126
105
|
});
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
});
|
|
106
|
+
//todo: probably wise to first look and see if we actually need the hasher to begin with
|
|
107
|
+
let hasher = rpOpts.credentialOpts?.hasher;
|
|
108
|
+
if (!rpOpts.credentialOpts?.hasher || typeof rpOpts.credentialOpts?.hasher !== 'function') {
|
|
109
|
+
hasher = defaultHasher;
|
|
110
|
+
}
|
|
111
|
+
const builder = RP.builder({ requestVersion: getRequestVersion(rpOpts) })
|
|
112
|
+
.withScope('openid', PropertyTarget.REQUEST_OBJECT)
|
|
113
|
+
.withResponseMode(rpOpts.responseMode ?? ResponseMode.POST)
|
|
114
|
+
.withResponseType(ResponseType.VP_TOKEN, PropertyTarget.REQUEST_OBJECT)
|
|
115
|
+
// todo: move to options fill/correct method
|
|
116
|
+
.withSupportedVersions(rpOpts.supportedVersions ?? [SupportedVersion.JWT_VC_PRESENTATION_PROFILE_v1, SupportedVersion.SIOPv2_ID1, SupportedVersion.SIOPv2_D11])
|
|
117
|
+
.withEventEmitter(eventEmitter)
|
|
118
|
+
.withSessionManager(rpOpts.sessionManager ?? new InMemoryRPSessionManager(eventEmitter))
|
|
119
|
+
.withClientMetadata(rpOpts.clientMetadataOpts ?? defaultClientMetadata, PropertyTarget.REQUEST_OBJECT)
|
|
120
|
+
.withVerifyJwtCallback(rpOpts.verifyJwtCallback
|
|
121
|
+
? rpOpts.verifyJwtCallback
|
|
122
|
+
: getVerifyJwtCallback({
|
|
123
|
+
resolver,
|
|
124
|
+
verifyOpts: {
|
|
125
|
+
wellknownDIDVerifyCallback: getWellKnownDIDVerifyCallback(rpOpts.identifierOpts, context),
|
|
126
|
+
checkLinkedDomain: 'if_present',
|
|
127
|
+
},
|
|
128
|
+
}, context))
|
|
129
|
+
.withRevocationVerification(RevocationVerification.NEVER)
|
|
130
|
+
.withPresentationVerification(getPresentationVerificationCallback(identifierOpts.idOpts, context));
|
|
131
|
+
const oidfOpts = identifierOpts.oidfOpts;
|
|
132
|
+
if (oidfOpts && isExternalIdentifierOIDFEntityIdOpts(oidfOpts)) {
|
|
133
|
+
builder.withEntityId(oidfOpts.identifier, PropertyTarget.REQUEST_OBJECT).withClientIdScheme('entity_id', PropertyTarget.REQUEST_OBJECT);
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
const resolution = await context.agent.identifierManagedGet(identifierOpts.idOpts);
|
|
137
|
+
builder
|
|
138
|
+
.withClientId(resolution.issuer ?? (isManagedIdentifierDidResult(resolution) ? resolution.did : resolution.jwkThumbprint), PropertyTarget.REQUEST_OBJECT)
|
|
139
|
+
.withClientIdScheme(resolution.clientIdScheme ?? identifierOpts.idOpts.clientIdScheme, PropertyTarget.REQUEST_OBJECT);
|
|
140
|
+
}
|
|
141
|
+
if (hasher) {
|
|
142
|
+
builder.withHasher(hasher);
|
|
143
|
+
}
|
|
144
|
+
//fixme: this has been removed in the new version of did-auth-siop
|
|
145
|
+
/*if (!rpOpts.clientMetadataOpts?.subjectTypesSupported) {
|
|
146
|
+
// Do not update in case it is already provided via client metadata opts
|
|
147
|
+
didMethods.forEach((method) => builder.addDidMethod(method))
|
|
148
|
+
}*/
|
|
149
|
+
//fixme: this has been removed in the new version of did-auth-siop
|
|
150
|
+
// builder.withWellknownDIDVerifyCallback(getWellKnownDIDVerifyCallback(didOpts, context))
|
|
151
|
+
if (definition) {
|
|
152
|
+
builder.withPresentationDefinition({ definition }, PropertyTarget.REQUEST_OBJECT);
|
|
153
|
+
}
|
|
154
|
+
if (dcqlQuery) {
|
|
155
|
+
builder.withDcqlQuery(dcqlQuery);
|
|
156
|
+
}
|
|
157
|
+
if (rpOpts.responseRedirectUri) {
|
|
158
|
+
builder.withResponseRedirectUri(rpOpts.responseRedirectUri);
|
|
159
|
+
}
|
|
160
|
+
//const key = resolution.key
|
|
161
|
+
//fixme: this has been removed in the new version of did-auth-siop
|
|
162
|
+
//builder.withSuppliedSignature(SuppliedSigner(key, context, getSigningAlgo(key.type) as unknown as KeyAlgo), did, kid, getSigningAlgo(key.type))
|
|
163
|
+
/*if (isManagedIdentifierDidResult(resolution)) {
|
|
164
|
+
//fixme: only accepts dids in version used. New SIOP lib also accepts other types
|
|
165
|
+
builder.withSuppliedSignature(
|
|
166
|
+
SuppliedSigner(key, context, getSigningAlgo(key.type) as unknown as KeyAlgo),
|
|
167
|
+
resolution.did,
|
|
168
|
+
resolution.kid,
|
|
169
|
+
getSigningAlgo(key.type),
|
|
170
|
+
)
|
|
171
|
+
}*/
|
|
172
|
+
//fixme: signcallback and it's return type are not totally compatible with our CreateJwtCallbackBase
|
|
173
|
+
const createJwtCallback = signCallback(rpOpts.identifierOpts.idOpts, context);
|
|
174
|
+
builder.withCreateJwtCallback(createJwtCallback);
|
|
175
|
+
return builder;
|
|
198
176
|
}
|
|
199
|
-
function signCallback(idOpts, context) {
|
|
200
|
-
return (jwtIssuer, jwt, kid) =>
|
|
201
|
-
if (!(
|
|
177
|
+
export function signCallback(idOpts, context) {
|
|
178
|
+
return async (jwtIssuer, jwt, kid) => {
|
|
179
|
+
if (!(isManagedIdentifierDidOpts(idOpts) || isManagedIdentifierX5cOpts(idOpts))) {
|
|
202
180
|
return Promise.reject(Error(`JWT issuer method ${jwtIssuer.method} not yet supported`));
|
|
203
181
|
}
|
|
204
|
-
const result =
|
|
182
|
+
const result = await context.agent.jwtCreateJwsCompactSignature({
|
|
205
183
|
// FIXME fix cose-key inference
|
|
206
184
|
// @ts-ignore
|
|
207
185
|
issuer: { identifier: idOpts.identifier, kmsKeyRef: idOpts.kmsKeyRef, noIdentifierInHeader: false },
|
|
@@ -211,31 +189,29 @@ function signCallback(idOpts, context) {
|
|
|
211
189
|
payload: jwt.payload,
|
|
212
190
|
});
|
|
213
191
|
return result.jwt;
|
|
214
|
-
}
|
|
192
|
+
};
|
|
215
193
|
}
|
|
216
194
|
function getVerifyJwtCallback(_opts, context) {
|
|
217
|
-
return (_jwtVerifier, jwt) =>
|
|
218
|
-
const result =
|
|
195
|
+
return async (_jwtVerifier, jwt) => {
|
|
196
|
+
const result = await context.agent.jwtVerifyJwsSignature({ jws: jwt.raw });
|
|
219
197
|
console.log(result.message);
|
|
220
198
|
return !result.error;
|
|
221
|
-
}
|
|
199
|
+
};
|
|
222
200
|
}
|
|
223
|
-
function createRP(
|
|
224
|
-
return
|
|
225
|
-
return (yield createRPBuilder({ rpOpts: rpOptions, context })).build();
|
|
226
|
-
});
|
|
201
|
+
export async function createRP({ rpOptions, context }) {
|
|
202
|
+
return (await createRPBuilder({ rpOpts: rpOptions, context })).build();
|
|
227
203
|
}
|
|
228
|
-
function getSigningAlgo(type) {
|
|
204
|
+
export function getSigningAlgo(type) {
|
|
229
205
|
switch (type) {
|
|
230
206
|
case 'Ed25519':
|
|
231
|
-
return
|
|
207
|
+
return SigningAlgo.EDDSA;
|
|
232
208
|
case 'Secp256k1':
|
|
233
|
-
return
|
|
209
|
+
return SigningAlgo.ES256K;
|
|
234
210
|
case 'Secp256r1':
|
|
235
|
-
return
|
|
211
|
+
return SigningAlgo.ES256;
|
|
236
212
|
// @ts-ignore
|
|
237
213
|
case 'RSA':
|
|
238
|
-
return
|
|
214
|
+
return SigningAlgo.RS256;
|
|
239
215
|
default:
|
|
240
216
|
throw Error('Key type not yet supported');
|
|
241
217
|
}
|
package/dist/functions.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,26 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.SIOPv2RP = exports.schema = void 0;
|
|
18
1
|
/**
|
|
19
2
|
* @public
|
|
20
3
|
*/
|
|
21
4
|
const schema = require('../plugin.schema.json');
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
__exportStar(require("./types/ISIOPv2RP"), exports);
|
|
5
|
+
export { schema };
|
|
6
|
+
export { SIOPv2RP } from './agent/SIOPv2RP';
|
|
7
|
+
export * from './types/ISIOPv2RP';
|
|
26
8
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAA;AAC/C,OAAO,EAAE,MAAM,EAAE,CAAA;AACjB,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAC3C,cAAc,mBAAmB,CAAA"}
|
package/dist/types/ISIOPv2RP.js
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.VerifiedDataMode = void 0;
|
|
4
|
-
var VerifiedDataMode;
|
|
1
|
+
export var VerifiedDataMode;
|
|
5
2
|
(function (VerifiedDataMode) {
|
|
6
3
|
VerifiedDataMode["NONE"] = "none";
|
|
7
4
|
VerifiedDataMode["VERIFIED_PRESENTATION"] = "vp";
|
|
8
5
|
VerifiedDataMode["CREDENTIAL_SUBJECT_FLATTENED"] = "cs-flat";
|
|
9
|
-
})(VerifiedDataMode || (
|
|
6
|
+
})(VerifiedDataMode || (VerifiedDataMode = {}));
|
|
10
7
|
//# sourceMappingURL=ISIOPv2RP.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISIOPv2RP.js","sourceRoot":"","sources":["../../src/types/ISIOPv2RP.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ISIOPv2RP.js","sourceRoot":"","sources":["../../src/types/ISIOPv2RP.ts"],"names":[],"mappings":"AAuCA,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,iCAAa,CAAA;IACb,gDAA4B,CAAA;IAC5B,4DAAwC,CAAA;AAC1C,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk.siopv2-oid4vp-rp-auth",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"@sphereon/ssi-sdk-ext.did-utils": "0.28.0",
|
|
22
22
|
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.28.0",
|
|
23
23
|
"@sphereon/ssi-sdk-ext.jwt-service": "0.28.0",
|
|
24
|
-
"@sphereon/ssi-sdk.core": "0.33.
|
|
25
|
-
"@sphereon/ssi-sdk.credential-validation": "0.33.
|
|
26
|
-
"@sphereon/ssi-sdk.kv-store-temp": "0.33.
|
|
27
|
-
"@sphereon/ssi-sdk.mdl-mdoc": "0.33.
|
|
28
|
-
"@sphereon/ssi-sdk.pd-manager": "0.33.
|
|
29
|
-
"@sphereon/ssi-sdk.presentation-exchange": "0.33.
|
|
30
|
-
"@sphereon/ssi-sdk.sd-jwt": "0.33.
|
|
31
|
-
"@sphereon/ssi-sdk.siopv2-oid4vp-common": "0.33.
|
|
32
|
-
"@sphereon/ssi-types": "0.33.
|
|
24
|
+
"@sphereon/ssi-sdk.core": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
25
|
+
"@sphereon/ssi-sdk.credential-validation": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
26
|
+
"@sphereon/ssi-sdk.kv-store-temp": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
27
|
+
"@sphereon/ssi-sdk.mdl-mdoc": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
28
|
+
"@sphereon/ssi-sdk.pd-manager": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
29
|
+
"@sphereon/ssi-sdk.presentation-exchange": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
30
|
+
"@sphereon/ssi-sdk.sd-jwt": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
31
|
+
"@sphereon/ssi-sdk.siopv2-oid4vp-common": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
32
|
+
"@sphereon/ssi-types": "0.33.1-feature.vcdm2.4+9f634bdb",
|
|
33
33
|
"@sphereon/wellknown-dids-client": "^0.1.3",
|
|
34
34
|
"@veramo/core": "4.2.0",
|
|
35
35
|
"@veramo/credential-w3c": "4.2.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"Authenticator"
|
|
75
75
|
],
|
|
76
76
|
"nx": {},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "9f634bdb714061141e277508c124b08d626f6036"
|
|
78
78
|
}
|