mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 15:08:46 +00:00
암호 키 생성 페이지에서 검증키와 서명키를 함께 생성하도록 변경
This commit is contained in:
@@ -4,8 +4,14 @@ type Path = "/key/export";
|
||||
|
||||
interface KeyExportState {
|
||||
redirectPath: string;
|
||||
pubKeyBase64: string;
|
||||
privKeyBase64: string;
|
||||
encKeyPair: {
|
||||
pubKeyBase64: string;
|
||||
privKeyBase64: string;
|
||||
};
|
||||
sigKeyPair: {
|
||||
pubKeyBase64: string;
|
||||
privKeyBase64: string;
|
||||
};
|
||||
mekDraft: ArrayBuffer;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user