Comparing version 7.1.3 to 7.1.4
{ | ||
"name": "ssb-keys", | ||
"description": "keyfile operations for ssb", | ||
"version": "7.1.3", | ||
"version": "7.1.4", | ||
"homepage": "https://github.com/ssbc/ssb-keys", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -25,7 +25,7 @@ 'use strict' | ||
var pub = tag(keys.public.toString('base64'), curve) | ||
var pub = tag(keys.public, curve) | ||
return { | ||
curve: curve, | ||
public: pub, | ||
private: keys.private ? tag(keys.private.toString('base64'), curve) : undefined, | ||
private: keys.private ? tag(keys.private, curve) : undefined, | ||
id: '@'+(curve === 'ed25519' ? pub : exports.hash(pub)) | ||
@@ -32,0 +32,0 @@ } |
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
19585
12