You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keypair curve is P384 which means the length of output bits is too long.
SubtleCrypto ECDH DeriveKey isn't suitable to directly derive an AES-GCM key directly as it uses the raw DH output and doesn't pass it through any kind of KDF.
Solution is to manually derive the ECDH bits and pass through PBKDF2 to derive the AES-GCM key.
FoxTrot-Front-End/src/global/crypto.ts
Line 55 in 858c87e
Issues:
Solution is to manually derive the ECDH bits and pass through PBKDF2 to derive the AES-GCM key.
webcrypto/issues/193
The text was updated successfully, but these errors were encountered: