Simplify join expression
This commit is contained in:
parent
bd83410bdb
commit
98958ec990
1 changed files with 1 additions and 1 deletions
|
@ -570,7 +570,7 @@ class VaultAES256:
|
|||
|
||||
# COMBINE SALT, DIGEST AND DATA
|
||||
hmac = HMAC.new(key2, cryptedData, SHA256)
|
||||
message = b''.join([hexlify(salt), b'\n', to_bytes(hmac.hexdigest()), b'\n', hexlify(cryptedData)])
|
||||
message = b'\n'.join([hexlify(salt), to_bytes(hmac.hexdigest()), hexlify(cryptedData)])
|
||||
message = hexlify(message)
|
||||
return message
|
||||
|
||||
|
|
Loading…
Reference in a new issue