js-waku/packages/message-encryption/src/constants.ts

11 lines
168 B
TypeScript

export const Symmetric = {
keySize: 32,
ivSize: 12,
tagSize: 16,
algorithm: { name: "AES-GCM", length: 128 },
};
export const Asymmetric = {
keySize: 32,
};