xmpp.chapril.org-conversejs/src/plugins/omemo/consts.js
JC Brand 01efb02f9e Make sure XEP-0363 urls are also OMEMO encrypted
by re-using `ChatBox.prototype.sendMessage`.

updates #1182
2021-07-03 00:22:03 +02:00

11 lines
186 B
JavaScript

export const UNDECIDED = 0;
export const TRUSTED = 1;
export const UNTRUSTED = -1;
export const TAG_LENGTH = 128;
export const KEY_ALGO = {
'name': 'AES-GCM',
'length': 128
};