File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def __init__(self, cls):
48
48
},
49
49
'KEY' : {
50
50
'value' : None ,
51
- 'description' : 'The key to use for encryption/decryption' ,
51
+ 'description' : 'The key to use for encryption/decryption (Auto-Gen) ' ,
52
52
'required' : False
53
53
},
54
54
'TEXT' : {
@@ -58,17 +58,17 @@ def __init__(self, cls):
58
58
},
59
59
'NONCE' : {
60
60
'value' : None ,
61
- 'description' : 'The nonce that can be obtained after encryption/decryption' ,
61
+ 'description' : 'The nonce to use for encryption/decryption (Auto-Gen) ' ,
62
62
'required' : False
63
63
},
64
64
'MAC' : {
65
65
'value' : None ,
66
- 'description' : 'The mac that can be obtained after encryption' ,
66
+ 'description' : 'The mac to use for encryption/decryption (Auto-Gen) ' ,
67
67
'required' : False
68
68
},
69
69
'IV' : {
70
70
'value' : None ,
71
- 'description' : 'The initialization vector that can be obtained after encryption' ,
71
+ 'description' : 'The initialization vector used for encryption/decryption (Auto-Gen) ' ,
72
72
'required' : False
73
73
}
74
74
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def __init__(self, cls):
21
21
settings = {
22
22
'ALGO' : {
23
23
'value' : 'SHA-256' ,
24
- 'description' : 'The algorithm to use for hashing ' ,
24
+ 'description' : 'The specific algorithm, use \' hashes \' for a complete list ' ,
25
25
'required' : True
26
26
},
27
27
'TEXT' : {
@@ -31,12 +31,12 @@ def __init__(self, cls):
31
31
},
32
32
'HASH' : {
33
33
'value' : None ,
34
- 'description' : 'Only used for comparing hashes ' ,
34
+ 'description' : 'The hash to compare to (Only for comparing) ' ,
35
35
'required' : False
36
36
},
37
37
'SALT' : {
38
38
'value' : None ,
39
- 'description' : 'The salt that gets generated when hashing' ,
39
+ 'description' : 'The salt used for hashing (Auto-Gen) ' ,
40
40
'required' : False
41
41
}
42
42
}
You can’t perform that action at this time.
0 commit comments