Skip to content

Commit 5fe2927

Browse files
committed
Small cleanup
1 parent 20ecc6c commit 5fe2927

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

SSSA/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ def merge_ints(self, secrets):
3434

3535
for secret in secrets:
3636
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
37+
result += "0"*(64 - (len(hex_data))) + hex_data
4038

4139
byte_object = None
4240
try:

0 commit comments

Comments
 (0)