mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
프론트엔드에서의 암호 키 관련된 변수 이름 리팩토링
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
interface KeyPairs {
|
||||
encKeyPair: CryptoKeyPair;
|
||||
sigKeyPair: CryptoKeyPair;
|
||||
export interface ClientKeys {
|
||||
encryptKey: CryptoKey;
|
||||
decryptKey: CryptoKey;
|
||||
signKey: CryptoKey;
|
||||
verifyKey: CryptoKey;
|
||||
}
|
||||
|
||||
export const keyPairsStore = writable<KeyPairs | null>(null);
|
||||
export const clientKeyStore = writable<ClientKeys | null>(null);
|
||||
export const mekStore = writable<Map<number, CryptoKey>>(new Map());
|
||||
|
||||
Reference in New Issue
Block a user