mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 09:08:03 +00:00
6 lines
208 B
JavaScript
6 lines
208 B
JavaScript
export const ENCODING = ['scrypt', 'xsalsa20-poly1305'];
|
|
export const ENCODING_NONE = ['none'];
|
|
export const ENCODING_VERSION = '3';
|
|
export const NONCE_LENGTH = 24;
|
|
export const SCRYPT_LENGTH = 32 + (3 * 4);
|