ente/src/types.ts

10 lines
213 B
TypeScript
Raw Normal View History

export interface keyAttributes {
kekSalt: string;
encryptedKey: string;
keyDecryptionNonce: string;
opsLimit: number;
memLimit: number;
}
2021-03-21 14:18:38 +00:00
export const ENCRYPTION_CHUNK_SIZE = 4 * 1024 * 1024;