feat: enhance zero-knowledge authentication by deriving and sending auth hashes to the server

This commit is contained in:
ramvignesh-b
2026-04-14 22:44:42 +05:30
parent 3e5dbbe3f3
commit 967b3a77f8
10 changed files with 146 additions and 79 deletions
+6
View File
@@ -0,0 +1,6 @@
export const mockMasterKey: CryptoKey = {
type: "secret",
algorithm: { name: "AES-GCM" },
extractable: false,
usages: ["encrypt", "decrypt"],
};