diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-09 14:43:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-09 14:43:23 +0200 |
commit | ae9ed91b6d841c73ccc52acecc534053c73bfb43 (patch) | |
tree | 7db1115e9d3924ff8bb9e9bbee9a9c20bf836cd5 /client-web/source/protocol | |
parent | 32373fd18a05663c3bb7d9b1d9fa0a21d909c784 (diff) | |
download | keks-meet-ae9ed91b6d841c73ccc52acecc534053c73bfb43.tar keks-meet-ae9ed91b6d841c73ccc52acecc534053c73bfb43.tar.bz2 keks-meet-ae9ed91b6d841c73ccc52acecc534053c73bfb43.tar.zst |
new prefs
Diffstat (limited to 'client-web/source/protocol')
-rw-r--r-- | client-web/source/protocol/crypto.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client-web/source/protocol/crypto.ts b/client-web/source/protocol/crypto.ts index fb34e8d..742f22c 100644 --- a/client-web/source/protocol/crypto.ts +++ b/client-web/source/protocol/crypto.ts @@ -3,8 +3,6 @@ import { log } from "../logger.ts"; //! I am not a crypto expert at all! Please read carefully and report any issues to me. export async function crypto_seeded_key(seed: string): Promise<CryptoKey> { - if (seed.length < 8) log({ scope: "crypto", warn: true }, "Room name is very short. e2ee is insecure!") - log("crypto", "importing seed…") const seed_key = await window.crypto.subtle.importKey( "raw", |