@types/jsrsasign
Advanced tools
Comparing version 8.0.9 to 8.0.10
@@ -59,5 +59,7 @@ declare namespace jsrsasign.KJUR.crypto { | ||
* @example | ||
* mac.digest() | ||
* var mac = new KJUR.crypto.Mac({alg: "HmacSHA256", "pass": "pass"}); | ||
* mac.updateString('aaa') | ||
* mac.doFinal() → "5737da..." | ||
*/ | ||
doFinal(): void; | ||
doFinal(): string; | ||
@@ -68,14 +70,15 @@ /** | ||
* @example | ||
* mac.digestString('aaa') | ||
* var mac = new KJUR.crypto.Mac({alg: "HmacSHA256", "pass": "pass"}); | ||
* mac.doFinalString("aaa") → "5737da..." | ||
*/ | ||
doFinalString(str: string): void; | ||
doFinalString(str: string): string; | ||
/** | ||
* performs final update on the digest using hexadecimal string, | ||
* then completes the digest computation | ||
* performs final update on the digest using hexadecimal string, then completes the digest computation | ||
* @param hex hexadecimal string to final update | ||
* @example | ||
* mac.digestHex('0f2abd') | ||
* var mac = new KJUR.crypto.Mac({alg: "HmacSHA256", "pass": "pass"}); | ||
* mac.doFinalHex("616161") → "5737da..." | ||
*/ | ||
doFinalHex(hex: string): void; | ||
doFinalHex(hex: string): string; | ||
@@ -82,0 +85,0 @@ /** |
{ | ||
"name": "@types/jsrsasign", | ||
"version": "8.0.9", | ||
"version": "8.0.10", | ||
"description": "TypeScript definitions for jsrsasign", | ||
@@ -22,4 +22,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "d8236c3002b3933f7baabe48d99a76fe24baf11e440ea878e907ce5b7a3a740e", | ||
"typeScriptVersion": "3.3" | ||
"typesPublisherContentHash": "3f102b0e29163d6c22c0a25005026f14bcc409ca55200b32a6a55bb47290a4b3", | ||
"typeScriptVersion": "3.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 08 Dec 2020 21:18:16 GMT | ||
* Last updated: Sun, 07 Mar 2021 10:09:12 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `jsrsasign`, `lang` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
298625
176025
7172