@sphereon/ssi-sdk.mdl-mdoc 0.33.1-feature.vcdm2.tsup.32 → 0.33.1-next.3
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/agent/mDLMdoc.d.ts +68 -0
- package/dist/agent/mDLMdoc.d.ts.map +1 -0
- package/dist/agent/mDLMdoc.js +251 -0
- package/dist/agent/mDLMdoc.js.map +1 -0
- package/dist/functions/index.d.ts +47 -0
- package/dist/functions/index.d.ts.map +1 -0
- package/dist/functions/index.js +260 -0
- package/dist/functions/index.js.map +1 -0
- package/dist/index.d.ts +6 -222
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +25 -2538
- package/dist/index.js.map +1 -1
- package/dist/types/ImDLMdoc.d.ts +75 -0
- package/dist/types/ImDLMdoc.d.ts.map +1 -0
- package/dist/types/ImDLMdoc.js +3 -0
- package/dist/types/ImDLMdoc.js.map +1 -0
- package/package.json +25 -36
- package/src/agent/mDLMdoc.ts +21 -18
- package/src/functions/index.ts +34 -35
- package/src/types/ImDLMdoc.ts +8 -25
- package/dist/index.cjs +0 -2568
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -223
package/dist/index.d.cts
DELETED
|
@@ -1,223 +0,0 @@
|
|
|
1
|
-
import * as _sphereon_ssi_types from '@sphereon/ssi-types';
|
|
2
|
-
import { IPluginMethodMap, IAgentContext, IDIDManager, IResolver, IAgentPlugin } from '@veramo/core';
|
|
3
|
-
import * as _sphereon_kmp_mdoc_core from '@sphereon/kmp-mdoc-core';
|
|
4
|
-
import { com, Nullable } from '@sphereon/kmp-mdoc-core';
|
|
5
|
-
import { PresentationDefinitionV2, PresentationSubmission } from '@sphereon/pex-models';
|
|
6
|
-
import { ISphereonKeyManager } from '@sphereon/ssi-sdk-ext.key-manager';
|
|
7
|
-
import { X509ValidationResult, SubjectAlternativeGeneralName, CertificateInfo } from '@sphereon/ssi-sdk-ext.x509-utils';
|
|
8
|
-
|
|
9
|
-
type IKey$1 = com.sphereon.crypto.IKey;
|
|
10
|
-
type CoseSign1Json = com.sphereon.crypto.cose.CoseSign1Json;
|
|
11
|
-
type CoseSign1Cbor<Any> = com.sphereon.crypto.cose.CoseSign1Cbor<Any>;
|
|
12
|
-
type ICoseKeyCbor$1 = com.sphereon.crypto.cose.ICoseKeyCbor;
|
|
13
|
-
type ICoseKeyJson = com.sphereon.crypto.cose.ICoseKeyJson;
|
|
14
|
-
type IKeyInfo<KT extends IKey$1 = IKey$1> = com.sphereon.crypto.IKeyInfo<KT>;
|
|
15
|
-
type IVerifyResults<KT extends IKey$1> = com.sphereon.crypto.generic.IVerifyResults<KT>;
|
|
16
|
-
type IVerifySignatureResult<KT extends IKey$1> = com.sphereon.crypto.generic.IVerifySignatureResult<KT>;
|
|
17
|
-
type DocumentJson = com.sphereon.mdoc.data.device.DocumentJson;
|
|
18
|
-
type DocumentCbor = com.sphereon.mdoc.data.device.DocumentCbor;
|
|
19
|
-
declare const CborByteString: typeof com.sphereon.cbor.CborByteString;
|
|
20
|
-
declare const CoseKeyCbor: typeof com.sphereon.crypto.cose.CoseKeyCbor;
|
|
21
|
-
declare const CoseCryptoServiceJS: typeof com.sphereon.crypto.CoseCryptoServiceJS;
|
|
22
|
-
declare const CoseJoseKeyMappingService: {
|
|
23
|
-
toJoseJwk(key: com.sphereon.crypto.IKey): com.sphereon.crypto.jose.Jwk;
|
|
24
|
-
toCoseKey(key: com.sphereon.crypto.IKey): com.sphereon.crypto.cose.CoseKeyCbor;
|
|
25
|
-
getJoseX5c(key: com.sphereon.crypto.IKey): _sphereon_kmp_mdoc_core.Nullable<Array<string>>;
|
|
26
|
-
toJoseX5c(x5c: _sphereon_kmp_mdoc_core.Nullable<Array<any>>): _sphereon_kmp_mdoc_core.Nullable<Array<string>>;
|
|
27
|
-
toJwkKeyInfo(keyInfo: com.sphereon.crypto.IKeyInfo<any>): com.sphereon.crypto.KeyInfo<com.sphereon.crypto.jose.Jwk>;
|
|
28
|
-
toResolvedJwkKeyInfo(resolvedKeyInfo: com.sphereon.crypto.IResolvedKeyInfo<any>): com.sphereon.crypto.ResolvedKeyInfo<com.sphereon.crypto.jose.Jwk>;
|
|
29
|
-
toCoseKeyInfo(keyInfo: com.sphereon.crypto.IKeyInfo<any>): com.sphereon.crypto.KeyInfo<com.sphereon.crypto.cose.CoseKeyCbor>;
|
|
30
|
-
toResolvedCoseKeyInfo(resolvedKeyInfo: com.sphereon.crypto.IResolvedKeyInfo<any>): com.sphereon.crypto.ResolvedKeyInfo<com.sphereon.crypto.cose.CoseKeyCbor>;
|
|
31
|
-
isResolvedKeyInfo(keyInfo: com.sphereon.crypto.IKeyInfo<any>): boolean;
|
|
32
|
-
toResolvedKeyInfo<KeyType extends com.sphereon.crypto.IKey>(keyInfo: com.sphereon.crypto.IKeyInfo<any>, key?: _sphereon_kmp_mdoc_core.Nullable<KeyType>): com.sphereon.crypto.ResolvedKeyInfo<KeyType>;
|
|
33
|
-
toResolvedKeyInfoWithResolver<KeyType extends com.sphereon.crypto.IKey>(keyInfo: com.sphereon.crypto.IKeyInfo<KeyType>, resolveCallback: _sphereon_kmp_mdoc_core.Nullable<(p0: com.sphereon.crypto.IKeyInfo<KeyType>) => com.sphereon.crypto.ResolvedKeyInfo<KeyType>>): com.sphereon.crypto.ResolvedKeyInfo<KeyType>;
|
|
34
|
-
getCoseX5chain(key: com.sphereon.crypto.IKey): _sphereon_kmp_mdoc_core.Nullable<com.sphereon.cbor.CborArray<com.sphereon.cbor.CborByteString>>;
|
|
35
|
-
toCoseX5chain(x5c: _sphereon_kmp_mdoc_core.Nullable<Array<any>>): _sphereon_kmp_mdoc_core.Nullable<com.sphereon.cbor.CborArray<com.sphereon.cbor.CborByteString>>;
|
|
36
|
-
};
|
|
37
|
-
declare const KeyInfo: typeof com.sphereon.crypto.KeyInfo;
|
|
38
|
-
declare const DateTimeUtils: typeof com.sphereon.kmp.DateTimeUtils;
|
|
39
|
-
declare const decodeFrom: typeof com.sphereon.kmp.decodeFrom;
|
|
40
|
-
declare const encodeTo: typeof com.sphereon.kmp.encodeTo;
|
|
41
|
-
declare const Encoding: typeof com.sphereon.kmp.Encoding;
|
|
42
|
-
declare const MdocValidations: {
|
|
43
|
-
fromDocumentAsync(document: com.sphereon.mdoc.data.device.DocumentCbor, keyInfo?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.crypto.IKeyInfo<com.sphereon.crypto.cose.ICoseKeyCbor>>, trustedCerts?: _sphereon_kmp_mdoc_core.Nullable<Array<string>>, verificationTime?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.kmp.LocalDateTimeKMP>, allowExpiredDocuments?: _sphereon_kmp_mdoc_core.Nullable<boolean>, dateTimeUtils?: com.sphereon.kmp.DateTimeUtils, timeZoneId?: _sphereon_kmp_mdoc_core.Nullable<string>, clockSkewAllowedInSec?: number): Promise<com.sphereon.crypto.generic.IVerifyResults<com.sphereon.crypto.cose.ICoseKeyCbor>>;
|
|
44
|
-
fromIssuerAuthAsync(issuerAuth: com.sphereon.crypto.cose.CoseSign1Cbor<com.sphereon.mdoc.data.mso.MobileSecurityObjectCbor>, keyInfo?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.crypto.IKeyInfo<com.sphereon.crypto.cose.ICoseKeyCbor>>, trustedCerts?: _sphereon_kmp_mdoc_core.Nullable<Array<string>>, verificationTime?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.kmp.LocalDateTimeKMP>, allowExpiredDocuments?: _sphereon_kmp_mdoc_core.Nullable<boolean>, dateTimeUtils?: com.sphereon.kmp.DateTimeUtils, timeZoneId?: _sphereon_kmp_mdoc_core.Nullable<string>, clockSkewAllowedInSec?: number): Promise<com.sphereon.crypto.generic.IVerifyResults<com.sphereon.crypto.cose.ICoseKeyCbor>>;
|
|
45
|
-
withParamsAsync(issuerAuth?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.crypto.cose.CoseSign1Cbor<com.sphereon.mdoc.data.mso.MobileSecurityObjectCbor>>, document?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.mdoc.data.device.DocumentCbor>, mdocVerificationTypes?: _sphereon_kmp_mdoc_core.kotlin.collections.KtSet<com.sphereon.mdoc.data.MdocVerification>, keyInfo?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.crypto.IKeyInfo<com.sphereon.crypto.cose.ICoseKeyCbor>>, trustedCerts?: _sphereon_kmp_mdoc_core.Nullable<Array<string>>, verificationTime?: _sphereon_kmp_mdoc_core.Nullable<com.sphereon.kmp.LocalDateTimeKMP>, allowExpiredDocuments?: _sphereon_kmp_mdoc_core.Nullable<boolean>, dateTimeUtils?: com.sphereon.kmp.DateTimeUtils, timeZoneId?: _sphereon_kmp_mdoc_core.Nullable<string>, clockSkewAllowedInSec?: number): Promise<com.sphereon.crypto.generic.IVerifyResults<com.sphereon.crypto.cose.ICoseKeyCbor>>;
|
|
46
|
-
};
|
|
47
|
-
declare const MdocOid4vpService: typeof com.sphereon.mdoc.oid4vp.MdocOid4vpServiceJs;
|
|
48
|
-
declare const Jwk: typeof com.sphereon.crypto.jose.Jwk;
|
|
49
|
-
type DocumentDescriptorMatchResult = com.sphereon.mdoc.oid4vp.DocumentDescriptorMatchResult;
|
|
50
|
-
type IOid4VPPresentationDefinition = com.sphereon.mdoc.oid4vp.IOid4VPPresentationDefinition;
|
|
51
|
-
declare const Oid4VPPresentationSubmission: typeof com.sphereon.mdoc.oid4vp.Oid4VPPresentationSubmission;
|
|
52
|
-
interface ImDLMdoc extends IPluginMethodMap {
|
|
53
|
-
x509VerifyCertificateChain(args: VerifyCertificateChainArgs, context: IRequiredContext): Promise<X509ValidationResult>;
|
|
54
|
-
x509GetCertificateInfo(args: GetX509CertificateInfoArgs, context: IRequiredContext): Promise<CertificateInfo[]>;
|
|
55
|
-
mdocVerifyIssuerSigned(args: MdocVerifyIssuerSignedArgs, context: IRequiredContext): Promise<IVerifySignatureResult<KeyType>>;
|
|
56
|
-
mdocOid4vpHolderPresent(args: MdocOid4vpPresentArgs, context: IRequiredContext): Promise<MdocOid4VPPresentationAuth>;
|
|
57
|
-
mdocOid4vpRPVerify(args: MdocOid4vpRPVerifyArgs, _context: IRequiredContext): Promise<MdocOid4vpRPVerifyResult>;
|
|
58
|
-
}
|
|
59
|
-
type IRequiredContext = IAgentContext<ISphereonKeyManager & IDIDManager & IResolver>;
|
|
60
|
-
type VerifyCertificateChainArgs = {
|
|
61
|
-
chain: Array<string | Uint8Array>;
|
|
62
|
-
trustAnchors?: string[];
|
|
63
|
-
verificationTime?: Date;
|
|
64
|
-
opts?: {
|
|
65
|
-
allowNoTrustAnchorsFound?: boolean;
|
|
66
|
-
trustRootWhenNoAnchors?: boolean;
|
|
67
|
-
allowSingleNoCAChainElement?: boolean;
|
|
68
|
-
blindlyTrustedAnchors?: string[];
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
type GetX509CertificateInfoArgs = {
|
|
72
|
-
certificates: (string | Uint8Array)[];
|
|
73
|
-
sanTypeFilter?: SubjectAlternativeGeneralName | SubjectAlternativeGeneralName[];
|
|
74
|
-
};
|
|
75
|
-
type KeyType = ICoseKeyJson;
|
|
76
|
-
type MdocVerifyIssuerSignedArgs = {
|
|
77
|
-
input: CoseSign1Json;
|
|
78
|
-
keyInfo?: IKeyInfo<KeyType>;
|
|
79
|
-
requireX5Chain?: boolean;
|
|
80
|
-
};
|
|
81
|
-
interface MdocOid4VPPresentationAuth {
|
|
82
|
-
vp_token: string;
|
|
83
|
-
presentation_submission: PresentationSubmission;
|
|
84
|
-
}
|
|
85
|
-
interface MdocOid4vpPresentArgs {
|
|
86
|
-
mdocs: DocumentCbor[];
|
|
87
|
-
mdocHolderNonce?: string;
|
|
88
|
-
presentationDefinition: PresentationDefinitionV2;
|
|
89
|
-
trustAnchors?: string[];
|
|
90
|
-
verifications?: VerificationOptions;
|
|
91
|
-
clientId: string;
|
|
92
|
-
responseUri: string;
|
|
93
|
-
authorizationRequestNonce: string;
|
|
94
|
-
}
|
|
95
|
-
type VerificationOptions = {
|
|
96
|
-
allowExpiredDocuments?: boolean;
|
|
97
|
-
verificationTime?: Date;
|
|
98
|
-
};
|
|
99
|
-
type DocumentVerifyResult = {
|
|
100
|
-
document: DocumentJson;
|
|
101
|
-
validations: IVerifyResults<ICoseKeyCbor$1>;
|
|
102
|
-
};
|
|
103
|
-
type MdocOid4vpRPVerifyResult = {
|
|
104
|
-
error: boolean;
|
|
105
|
-
documents: Array<DocumentVerifyResult>;
|
|
106
|
-
presentation_submission: PresentationSubmission;
|
|
107
|
-
};
|
|
108
|
-
interface MdocOid4vpRPVerifyArgs {
|
|
109
|
-
vp_token: string;
|
|
110
|
-
presentation_submission: PresentationSubmission;
|
|
111
|
-
trustAnchors?: string[];
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
declare const mdocSupportMethods: Array<string>;
|
|
115
|
-
/**
|
|
116
|
-
* The MDLMdoc class implements the IAgentPlugin interface, providing methods for
|
|
117
|
-
* verification and information retrieval related to X.509 certificates and mDL (mobile
|
|
118
|
-
* driver's license) documents.
|
|
119
|
-
*/
|
|
120
|
-
declare class MDLMdoc implements IAgentPlugin {
|
|
121
|
-
readonly schema: any;
|
|
122
|
-
readonly methods: ImDLMdoc;
|
|
123
|
-
private readonly trustAnchors;
|
|
124
|
-
private opts;
|
|
125
|
-
constructor(args?: {
|
|
126
|
-
trustAnchors?: string[];
|
|
127
|
-
opts?: {
|
|
128
|
-
trustRootWhenNoAnchors?: boolean;
|
|
129
|
-
allowSingleNoCAChainElement?: boolean;
|
|
130
|
-
blindlyTrustedAnchors?: string[];
|
|
131
|
-
};
|
|
132
|
-
});
|
|
133
|
-
/**
|
|
134
|
-
* Processes and verifies the provided mdoc, generates device response and presentation submission tokens.
|
|
135
|
-
*
|
|
136
|
-
* @param {MdocOid4vpPresentArgs} args - An object containing arguments for mdoc oid4vp holder presentation.
|
|
137
|
-
* @param {IRequiredContext} _context - Required context for the operation.
|
|
138
|
-
* @return {Promise<MdocOid4VPPresentationAuth>} A promise that resolves to an object containing vp_token and presentation_submission.
|
|
139
|
-
*/
|
|
140
|
-
private mdocOid4vpHolderPresent;
|
|
141
|
-
/**
|
|
142
|
-
* Verifies on the Relying Party (RP) side for mdoc (mobile document) OIDC4VP (OpenID Connect for Verifiable Presentations).
|
|
143
|
-
*
|
|
144
|
-
* @param {MdocOid4vpRPVerifyArgs} args - The arguments required for verification, including the vp_token, presentation_submission, and trustAnchors.
|
|
145
|
-
* @param {IRequiredContext} _context - The required context for this method.
|
|
146
|
-
* @return {Promise<MdocOid4vpRPVerifyResult>} - A promise that resolves to an object containing error status,
|
|
147
|
-
* validated documents, and the original presentation submission.
|
|
148
|
-
*/
|
|
149
|
-
private mdocOid4vpRPVerify;
|
|
150
|
-
/**
|
|
151
|
-
* Verifies the issuer-signed Mobile Document (mDoc) using the provided arguments and context.
|
|
152
|
-
*
|
|
153
|
-
* @param {MdocVerifyIssuerSignedArgs} args - The arguments required for verification, including input and key information.
|
|
154
|
-
* @param {IRequiredContext} context - The context encompassing necessary dependencies and configurations.
|
|
155
|
-
* @return {Promise<IVerifySignatureResult<KeyType>>} A promise that resolves to the result of the signature verification, including key information if available.
|
|
156
|
-
*/
|
|
157
|
-
private mdocVerifyIssuerSigned;
|
|
158
|
-
/**
|
|
159
|
-
* Verifies an X.509 certificate chain against a set of trust anchors.
|
|
160
|
-
*
|
|
161
|
-
* @param {VerifyCertificateChainArgs} args - The arguments required for verifying the certificate chain.
|
|
162
|
-
* This includes the certificate chain to be verified and any additional trust anchors to be used.
|
|
163
|
-
* @param {IRequiredContext} _context - The context required for verification, including necessary dependencies and settings.
|
|
164
|
-
* @return {Promise<X509ValidationResult>} A promise that resolves to the result of the validation process, indicating the success or failure of the certificate chain verification.
|
|
165
|
-
*/
|
|
166
|
-
private x509VerifyCertificateChain;
|
|
167
|
-
/**
|
|
168
|
-
* Extracts information from a list of X509 certificates.
|
|
169
|
-
*
|
|
170
|
-
* @param {GetX509CertificateInfoArgs} args - Arguments required to retrieve certificate information,
|
|
171
|
-
* including the certificates and optional Subject Alternative Name (SAN) type filter.
|
|
172
|
-
* @param {IRequiredContext} context - The context required for the operation, which may include
|
|
173
|
-
* logging, configuration, and other operational details.
|
|
174
|
-
* @return {Promise<CertificateInfo[]>} A promise that resolves with an array of certificate
|
|
175
|
-
* information objects, each containing details extracted from individual certificates.
|
|
176
|
-
*/
|
|
177
|
-
private x509GetCertificateInfo;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
type ICoseKeyCbor = com.sphereon.crypto.cose.ICoseKeyCbor;
|
|
181
|
-
type ToBeSignedCbor = com.sphereon.crypto.cose.ToBeSignedCbor;
|
|
182
|
-
type ICoseCryptoCallbackJS = com.sphereon.crypto.ICoseCryptoCallbackJS;
|
|
183
|
-
type IKey = com.sphereon.crypto.IKey;
|
|
184
|
-
type IX509ServiceJS = com.sphereon.crypto.IX509ServiceJS;
|
|
185
|
-
type X509VerificationProfile = com.sphereon.crypto.X509VerificationProfile;
|
|
186
|
-
type LocalDateTimeKMP = com.sphereon.kmp.LocalDateTimeKMP;
|
|
187
|
-
declare class CoseCryptoService implements ICoseCryptoCallbackJS {
|
|
188
|
-
private context?;
|
|
189
|
-
constructor(context?: IRequiredContext | undefined);
|
|
190
|
-
setContext(context: IRequiredContext): void;
|
|
191
|
-
signAsync(input: ToBeSignedCbor, requireX5Chain: Nullable<boolean>): Promise<Int8Array>;
|
|
192
|
-
verify1Async<CborType>(input: com.sphereon.crypto.cose.CoseSign1Cbor<CborType>, keyInfo: com.sphereon.crypto.IKeyInfo<ICoseKeyCbor>, requireX5Chain: Nullable<boolean>): Promise<com.sphereon.crypto.generic.IVerifySignatureResult<ICoseKeyCbor>>;
|
|
193
|
-
resolvePublicKeyAsync<KT extends com.sphereon.crypto.IKey>(keyInfo: com.sphereon.crypto.IKeyInfo<KT>): Promise<com.sphereon.crypto.IResolvedKeyInfo<KT>>;
|
|
194
|
-
}
|
|
195
|
-
/**
|
|
196
|
-
* This class can be used for X509 validations.
|
|
197
|
-
* Either have an instance per trustedCerts and verification invocation or use a single instance and provide the trusted certs in the method argument
|
|
198
|
-
*
|
|
199
|
-
* The class is also registered with the low-level mDL/mdoc Kotlin Multiplatform library
|
|
200
|
-
* Next to the specific function for the library it exports a more powerful version of the same verification method as well
|
|
201
|
-
*/
|
|
202
|
-
declare class X509CallbackService implements IX509ServiceJS {
|
|
203
|
-
private _trustedCerts?;
|
|
204
|
-
constructor(trustedCerts?: Array<string>);
|
|
205
|
-
/**
|
|
206
|
-
* A more powerful version of the method below. Allows to verify at a specific time and returns more information
|
|
207
|
-
* @param chain
|
|
208
|
-
* @param trustAnchors
|
|
209
|
-
* @param verificationTime
|
|
210
|
-
*/
|
|
211
|
-
verifyCertificateChain({ chain, trustAnchors, verificationTime, opts, }: VerifyCertificateChainArgs): Promise<X509ValidationResult>;
|
|
212
|
-
/**
|
|
213
|
-
* This method is the implementation used within the mDL/Mdoc library
|
|
214
|
-
*/
|
|
215
|
-
verifyCertificateChainJS<KeyType extends IKey>(chainDER: Nullable<Int8Array[]>, chainPEM: Nullable<string[]>, trustedCerts: Nullable<string[]>, verificationProfile?: X509VerificationProfile | undefined, verificationTime?: Nullable<LocalDateTimeKMP>): Promise<com.sphereon.crypto.IX509VerificationResult<KeyType>>;
|
|
216
|
-
setTrustedCerts: (trustedCertsInPEM?: Array<string>) => void;
|
|
217
|
-
getTrustedCerts: () => string[] | undefined;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
declare const logger: _sphereon_ssi_types.ISimpleLogger<unknown>;
|
|
221
|
-
declare const schema: any;
|
|
222
|
-
|
|
223
|
-
export { CborByteString, CoseCryptoService, CoseCryptoServiceJS, CoseJoseKeyMappingService, CoseKeyCbor, type CoseSign1Cbor, type CoseSign1Json, DateTimeUtils, type DocumentCbor, type DocumentDescriptorMatchResult, type DocumentJson, type DocumentVerifyResult, Encoding, type GetX509CertificateInfoArgs, type ICoseKeyCbor$1 as ICoseKeyCbor, type ICoseKeyJson, type IKey$1 as IKey, type IKeyInfo, type IOid4VPPresentationDefinition, type IRequiredContext, type IVerifyResults, type IVerifySignatureResult, type ImDLMdoc, Jwk, KeyInfo, type KeyType, MDLMdoc, type MdocOid4VPPresentationAuth, type MdocOid4vpPresentArgs, type MdocOid4vpRPVerifyArgs, type MdocOid4vpRPVerifyResult, MdocOid4vpService, MdocValidations, type MdocVerifyIssuerSignedArgs, Oid4VPPresentationSubmission, type VerificationOptions, type VerifyCertificateChainArgs, X509CallbackService, decodeFrom, encodeTo, logger, mdocSupportMethods, schema };
|