15 lines
239 B
TypeScript
Raw Normal View History

2022-11-04 11:38:32 +11:00
export const Symmetric = {
keySize: 32,
ivSize: 12,
tagSize: 16,
algorithm: { name: "AES-GCM", length: 128 }
2022-11-04 11:38:32 +11:00
};
export const Asymmetric = {
keySize: 32
2022-11-04 11:38:32 +11:00
};
export const OneMillion = BigInt(1_000_000);
export const Version = 1;