google-cloud-secrets-manager
Advanced tools
Comparing version 1.0.10 to 1.0.11
@@ -29,7 +29,7 @@ "use strict"; | ||
const binaryKey = str2ab(atob(plainKey)); | ||
const signer = await window.crypto.subtle.importKey('pkcs8', binaryKey, { | ||
const signer = await crypto.subtle.importKey('pkcs8', binaryKey, { | ||
name: 'RSASSA-PKCS1-V1_5', | ||
hash: { name: 'SHA-256' } | ||
}, false, ['sign']); | ||
const binarySignature = await window.crypto.subtle.sign({ name: 'RSASSA-PKCS1-V1_5' }, signer, buf); | ||
const binarySignature = await crypto.subtle.sign({ name: 'RSASSA-PKCS1-V1_5' }, signer, buf); | ||
return arrayBufferToBase64Url(binarySignature); | ||
@@ -36,0 +36,0 @@ } |
{ | ||
"name": "google-cloud-secrets-manager", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"files": [ | ||
@@ -5,0 +5,0 @@ "build/*" |
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
12880