From 192b790981fa71d61b573290bdb5d7143e19b42a Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 16 Sep 2020 14:43:20 +0200 Subject: [PATCH] needed this for some testing --- prototypes/derive-keys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);