From 100e5ff698e8ddebfe22b3acd6d7d19850ec4155 Mon Sep 17 00:00:00 2001 From: chenkins Date: Sat, 30 Mar 2024 21:43:19 +0100 Subject: [PATCH] Fix keyUsages for uvf masterkey (#19). --- frontend/src/common/crypto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/common/crypto.ts b/frontend/src/common/crypto.ts index e24378e2a..2cf6f6c6b 100644 --- a/frontend/src/common/crypto.ts +++ b/frontend/src/common/crypto.ts @@ -61,7 +61,7 @@ export class VaultKeys { VaultKeys.MASTERKEY_KEY_DESIGNATION, true, // TODO https://github.com/shift7-ch/cipherduck-hub/issues/19 is this correct? - ['sign', 'wrapKey', 'unwrapKey'] + ['wrapKey', 'unwrapKey'] ); return new VaultKeys(await key); }