mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-29 03:53:39 -04:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
/**
|
|
* Encryption key SQLite database type.
|
|
*/
|
|
export type EncryptionKey = {
|
|
Id: string;
|
|
PublicKey: string;
|
|
PrivateKey: string;
|
|
IsPrimary: boolean;
|
|
}
|