diff --git a/prototypes/derive-keys.js b/prototypes/derive-keys.js index 7543da29..4988bba6 100644 --- a/prototypes/derive-keys.js +++ b/prototypes/derive-keys.js @@ -338,7 +338,7 @@ export class CryptoDriver { } } -function decodeBase64(base64) { +export function decodeBase64(base64) { const binStr = window.atob(base64); const len = binStr.length; const bytes = new Uint8Array(len);