@stablelib/x25519
Advanced tools
Comparing version 0.7.4 to 0.7.5
@@ -49,6 +49,6 @@ import { RandomSource } from "@stablelib/random"; | ||
export declare class X25519KeyAgreement implements KeyAgreement { | ||
readonly offerMessageLength: number; | ||
readonly acceptMessageLength: number; | ||
readonly sharedKeyLength: number; | ||
readonly savedStateLength: number; | ||
readonly offerMessageLength = 32; | ||
readonly acceptMessageLength = 32; | ||
readonly sharedKeyLength = 32; | ||
readonly savedStateLength = 32; | ||
private _secretKey; | ||
@@ -55,0 +55,0 @@ private _sharedKey; |
{ | ||
"name": "@stablelib/x25519", | ||
"version": "0.7.4", | ||
"version": "0.7.5", | ||
"description": "X25519 key agreement (Curve25519)", | ||
@@ -18,3 +18,3 @@ "main": "./lib/x25519.js", | ||
"dependencies": { | ||
"@stablelib/keyagreement": "^0.5.0", | ||
"@stablelib/keyagreement": "^0.5.1", | ||
"@stablelib/random": "^0.7.4", | ||
@@ -27,3 +27,3 @@ "@stablelib/wipe": "^0.5.0" | ||
}, | ||
"gitHead": "cd823c5ca890d18b9abd28aae7af728013e7ef9b" | ||
"gitHead": "bfc2e6b7c9c3f31c7bb3610b8a0c09d3ef3613ca" | ||
} |
Sorry, the diff of this file is not supported yet
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
86006