edockit 0.3.0 → 0.4.0-dev.0
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/CHANGELOG.md +17 -0
- package/README.md +81 -198
- package/TRUSTED-LIST.md +308 -0
- package/dist/certificate-c46e14a0.js +560 -0
- package/dist/certificate-c46e14a0.js.map +1 -0
- package/dist/certificate-fc0e06f7.js +571 -0
- package/dist/certificate-fc0e06f7.js.map +1 -0
- package/dist/core/canonicalization/XMLCanonicalizer.d.ts +9 -3
- package/dist/core/trustedlist/build.d.ts +41 -0
- package/dist/core/trustedlist/bundled-provider.d.ts +2 -0
- package/dist/core/trustedlist/contract.d.ts +19 -0
- package/dist/core/trustedlist/dom.d.ts +12 -0
- package/dist/core/trustedlist/extract.d.ts +6 -0
- package/dist/core/trustedlist/http.d.ts +8 -0
- package/dist/core/trustedlist/identity.d.ts +7 -0
- package/dist/core/trustedlist/index.d.ts +18 -0
- package/dist/core/trustedlist/loader.d.ts +5 -0
- package/dist/core/trustedlist/matcher.d.ts +11 -0
- package/dist/core/trustedlist/normalize.d.ts +14 -0
- package/dist/core/trustedlist/reference-provider.d.ts +12 -0
- package/dist/core/trustedlist/types.d.ts +114 -0
- package/dist/core/unzip.d.ts +0 -0
- package/dist/core/verification.d.ts +22 -0
- package/dist/data/trusted-list.d.ts +3 -0
- package/dist/identity-1a3dddc3.js +902 -0
- package/dist/identity-1a3dddc3.js.map +1 -0
- package/dist/identity-b3a70fc1.js +897 -0
- package/dist/identity-b3a70fc1.js.map +1 -0
- package/dist/index.cjs.js +909 -8003
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.esm.js +417 -7510
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/loader-1ac52e12.js +217 -0
- package/dist/loader-1ac52e12.js.map +1 -0
- package/dist/loader-43d8e17a.js +222 -0
- package/dist/loader-43d8e17a.js.map +1 -0
- package/dist/normalize-60f2d7e6.js +6270 -0
- package/dist/normalize-60f2d7e6.js.map +1 -0
- package/dist/normalize-70da6516.js +6214 -0
- package/dist/normalize-70da6516.js.map +1 -0
- package/dist/reference-provider-1cd85b7b.js +217 -0
- package/dist/reference-provider-1cd85b7b.js.map +1 -0
- package/dist/reference-provider-53240217.js +211 -0
- package/dist/reference-provider-53240217.js.map +1 -0
- package/dist/trusted-list-build.cjs.js +575 -0
- package/dist/trusted-list-build.cjs.js.map +1 -0
- package/dist/trusted-list-build.d.ts +4 -0
- package/dist/trusted-list-build.esm.js +564 -0
- package/dist/trusted-list-build.esm.js.map +1 -0
- package/dist/trusted-list-bundled.cjs.js +30436 -0
- package/dist/trusted-list-bundled.cjs.js.map +1 -0
- package/dist/trusted-list-bundled.d.ts +1 -0
- package/dist/trusted-list-bundled.esm.js +30432 -0
- package/dist/trusted-list-bundled.esm.js.map +1 -0
- package/dist/trusted-list-http.cjs.js +85 -0
- package/dist/trusted-list-http.cjs.js.map +1 -0
- package/dist/trusted-list-http.d.ts +1 -0
- package/dist/trusted-list-http.esm.js +81 -0
- package/dist/trusted-list-http.esm.js.map +1 -0
- package/dist/trusted-list.cjs.js +35 -0
- package/dist/trusted-list.cjs.js.map +1 -0
- package/dist/trusted-list.d.ts +9 -0
- package/dist/trusted-list.esm.js +10 -0
- package/dist/trusted-list.esm.js.map +1 -0
- package/package.json +32 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { parseEdoc, SignatureInfo } from "./core/parser";
|
|
2
2
|
import { XMLCanonicalizer, CANONICALIZATION_METHODS } from "./core/canonicalization/XMLCanonicalizer";
|
|
3
3
|
import { parseCertificate, getSignerDisplayName, formatValidityPeriod } from "./core/certificate";
|
|
4
|
-
import { verifyChecksums, verifySignature } from "./core/verification";
|
|
4
|
+
import { verifyChecksums, verifySignature, VerificationOptions, ChecksumVerificationResult, SignatureVerificationResult, CertificateVerificationResult, ValidationStatus, ValidationLimitation, ChecklistStatus, ChecklistCheck, ChecklistItem, VerificationResult } from "./core/verification";
|
|
5
5
|
import { checkCertificateRevocation } from "./core/revocation/check";
|
|
6
6
|
import { RevocationResult, RevocationCheckOptions } from "./core/revocation/types";
|
|
7
7
|
import { parseTimestamp, verifyTimestamp, getTimestampTime } from "./core/timestamp/verify";
|
|
8
8
|
import { TimestampInfo, TimestampVerificationResult } from "./core/timestamp/types";
|
|
9
|
-
export { parseEdoc, SignatureInfo, XMLCanonicalizer, CANONICALIZATION_METHODS, parseCertificate, getSignerDisplayName, formatValidityPeriod, verifyChecksums, verifySignature, checkCertificateRevocation, RevocationResult, RevocationCheckOptions, parseTimestamp, verifyTimestamp, getTimestampTime, TimestampInfo, TimestampVerificationResult, };
|
|
9
|
+
export { parseEdoc, SignatureInfo, XMLCanonicalizer, CANONICALIZATION_METHODS, parseCertificate, getSignerDisplayName, formatValidityPeriod, verifyChecksums, verifySignature, VerificationOptions, ChecksumVerificationResult, SignatureVerificationResult, CertificateVerificationResult, ValidationStatus, ValidationLimitation, ChecklistStatus, ChecklistCheck, ChecklistItem, VerificationResult, checkCertificateRevocation, RevocationResult, RevocationCheckOptions, parseTimestamp, verifyTimestamp, getTimestampTime, TimestampInfo, TimestampVerificationResult, };
|
|
10
|
+
export type { TrustedListFetchOptions } from "./core/trustedlist/types";
|
|
11
|
+
export type { TrustListProvider, TrustMatchConfidence, TrustListMatch, TrustListQuery, TrustListQueryPurpose, } from "./core/trustedlist/contract";
|