1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
const CIPHER_CONFIG={
"enable"
:
true
,
"crypto"
:{
"enable"
:
true
,
"maxDataLength"
:240,
"printStack"
:
false
,
"aes"
:
true
,
"des"
:
true
,
"3des"
:
true
,
"cast"
:
true
,
"rc4"
:
true
,
"rc2"
:
true
,
"blowfish"
:
true
,
},
"hash"
:{
"enable"
:
true
,
"maxInputDataLength"
:240,
"printStack"
:
false
,
"md2"
:
true
,
"md4"
:
true
,
"md5"
:
true
,
"sha1"
:
true
,
"sha224"
:
true
,
"sha256"
:
true
,
"sha384"
:
true
,
"sha512"
:
true
},
"hmac"
:{
"enable"
:
true
,
"maxInputDataLength"
:240,
"printStack"
:
false
,
"sha1"
:
true
,
"md5"
:
true
,
"sha224"
:
true
,
"sha256"
:
true
,
"sha384"
:
true
,
"sha512"
:
true
,
},
"pbkdf"
:{
"enable"
:
true
,
"printStack"
:
false
,
}
}
|