//#region src/cryptosuites/dataIntegrityV2Context.d.ts /** * Data Integrity v2 Context * https://w3id.org/security/data-integrity/v2 * * This context defines the DataIntegrityProof and related terms. * Simplified without @protected to avoid conflicts when combining contexts. */ declare const dataIntegrityV2Context: { '@context': { id: string; type: string; DataIntegrityProof: string; challenge: string; created: { '@id': string; '@type': string; }; domain: string; expires: { '@id': string; '@type': string; }; nonce: string; proofPurpose: { '@id': string; '@type': string; }; assertionMethod: { '@id': string; '@type': string; }; authentication: { '@id': string; '@type': string; }; cryptosuite: { '@id': string; '@type': string; }; proofValue: { '@id': string; '@type': string; }; verificationMethod: { '@id': string; '@type': string; }; previousProof: { '@id': string; '@type': string; }; Multikey: string; controller: { '@id': string; '@type': string; }; revoked: { '@id': string; '@type': string; }; publicKeyMultibase: { '@id': string; '@type': string; }; secretKeyMultibase: { '@id': string; '@type': string; }; proof: { '@id': string; '@type': string; '@container': string; }; }; }; declare const dataIntegrityContextMap: Map; //#endregion export { dataIntegrityContextMap, dataIntegrityV2Context }; //# sourceMappingURL=dataIntegrityV2Context.d.mts.map