@it-enterprise/digital-signature 1.2.1 → 1.2.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/euscp/EndUserConstants.d.ts +2 -0
- package/euscp/euscp.js +2 -2
- package/package.json +1 -1
- package/readme.md +62 -8
- package/src/DigitalSignature.js +88 -124
- package/src/GlSign.js +16 -0
- package/src/Models.js +89 -2
- package/src/Utils.js +6 -2
|
@@ -58,10 +58,12 @@ export declare enum EndUserCertKeyType {
|
|
|
58
58
|
*/
|
|
59
59
|
export declare const EU_KEY_USAGE_UNKNOWN = 0;
|
|
60
60
|
export declare const EU_KEY_USAGE_DIGITAL_SIGNATURE = 1;
|
|
61
|
+
export declare const EU_KEY_USAGE_NON_REPUDATION = 2;
|
|
61
62
|
export declare const EU_KEY_USAGE_KEY_AGREEMENT = 16;
|
|
62
63
|
export declare enum EndUserKeyUsage {
|
|
63
64
|
Unknown,
|
|
64
65
|
DigitalSignature,
|
|
66
|
+
NonRepudation,
|
|
65
67
|
KeyAgreement
|
|
66
68
|
}
|
|
67
69
|
/**
|