@jsxc/jsxc
Version:
Real-time XMPP chat application with video calls, file transfer and encrypted communication
13 lines (9 loc) • 409 B
text/typescript
export const NUM_PRE_KEYS = 50;
export const MAX_PRE_KEY_ID = Math.pow(2, 31) - 1;
export const MAX_REGISTRATION_ID = Math.pow(2, 31) - 1;
export const NS_BASE = 'eu.siacs.conversations.axolotl';
export const NS_DEVICELIST = NS_BASE + '.devicelist';
export const NS_BUNDLES = NS_BASE + '.bundles:';
export const AES_KEY_LENGTH = 128;
export const AES_TAG_LENGTH = 128;
export const AES_EXTRACTABLE = true;