mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 19:10:52 +00:00
7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
export const mockMasterKey: CryptoKey = {
|
|
type: "secret",
|
|
algorithm: { name: "AES-GCM" },
|
|
extractable: false,
|
|
usages: ["encrypt", "decrypt"],
|
|
};
|