mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-03 06:13:08 +00:00
11 lines
168 B
TypeScript
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,
|
|
};
|