mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-13 21:43:07 +00:00
* chore: update noise * update: package.lock * update: @chainsafe/libp2p-gossipsub * rm unwanted libp2p interface deps & bump up libp2p * refactor code for new deps * update: new package.lock * setup prettier, refactor eslint and rm trailing commas * update package.lock * fix build * import type for interface * fix imports for merge * update typedoc exports * add: CustomEvent import * use new libp2p interface * add aegir as dev dep for tests
11 lines
166 B
TypeScript
11 lines
166 B
TypeScript
export const Symmetric = {
|
|
keySize: 32,
|
|
ivSize: 12,
|
|
tagSize: 16,
|
|
algorithm: { name: "AES-GCM", length: 128 }
|
|
};
|
|
|
|
export const Asymmetric = {
|
|
keySize: 32
|
|
};
|