We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ecc6c commit 5fe2927Copy full SHA for 5fe2927
1 file changed
SSSA/utils.py
@@ -34,9 +34,7 @@ def merge_ints(self, secrets):
34
35
for secret in secrets:
36
hex_data = hex(secret)[2:].replace("L", "")
37
- hex_data = "0"*(len(hex_data) % 2) + hex_data
38
- hex_data = "0"*(64 - (len(hex_data))) + hex_data
39
- result += hex_data
+ result += "0"*(64 - (len(hex_data))) + hex_data
40
41
byte_object = None
42
try:
0 commit comments