UNPKG
k9crypt
Version:
latest (1.1.8)
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.9
1.0.8
1.0.6
1.0.5
A special encryption algorithm created for K9Crypt.
k9crypt.xyz
K9Crypt/module
k9crypt
/
src
/
constants.js
10 lines
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module.exports
=
{
SALT_SIZE:
32
,
IV_SIZE:
16
,
KEY_SIZE:
32
,
TAG_SIZE:
16
,
PBKDF2_ITERATIONS:
310000
,
HASH_SEED:
0xCAFEBABE
,
PEPPER:
'veryLongAndComplexPepperValue123!@#$%^&*()_+[]{}|;:,.<>?'
,
HMAC_KEY:
'veryLongAndComplexHMACKeyValue456!@#$%^&*()_+[]{}|;:,.<>?'
, }
;