Skip to content

Commit b11023a

Browse files
committed
Minor fix
1 parent 1084486 commit b11023a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

encryption.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(self, cls):
4848
},
4949
'KEY': {
5050
'value': None,
51-
'description': 'The key to use for encryption/decryption',
51+
'description': 'The key to use for encryption/decryption (Auto-Gen)',
5252
'required': False
5353
},
5454
'TEXT': {
@@ -58,17 +58,17 @@ def __init__(self, cls):
5858
},
5959
'NONCE': {
6060
'value': None,
61-
'description': 'The nonce that can be obtained after encryption/decryption',
61+
'description': 'The nonce to use for encryption/decryption (Auto-Gen)',
6262
'required': False
6363
},
6464
'MAC': {
6565
'value': None,
66-
'description': 'The mac that can be obtained after encryption',
66+
'description': 'The mac to use for encryption/decryption (Auto-Gen)',
6767
'required': False
6868
},
6969
'IV': {
7070
'value': None,
71-
'description': 'The initialization vector that can be obtained after encryption',
71+
'description': 'The initialization vector used for encryption/decryption (Auto-Gen)',
7272
'required': False
7373
}
7474
}

hashing.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, cls):
2121
settings = {
2222
'ALGO': {
2323
'value': 'SHA-256',
24-
'description': 'The algorithm to use for hashing',
24+
'description': 'The specific algorithm, use \'hashes\' for a complete list',
2525
'required': True
2626
},
2727
'TEXT': {
@@ -31,12 +31,12 @@ def __init__(self, cls):
3131
},
3232
'HASH': {
3333
'value': None,
34-
'description': 'Only used for comparing hashes',
34+
'description': 'The hash to compare to (Only for comparing)',
3535
'required': False
3636
},
3737
'SALT': {
3838
'value': None,
39-
'description': 'The salt that gets generated when hashing',
39+
'description': 'The salt used for hashing (Auto-Gen)',
4040
'required': False
4141
}
4242
}

0 commit comments

Comments
 (0)