Skip to content

Commit

Permalink
Specify backend for HKDF
Browse files Browse the repository at this point in the history
  • Loading branch information
zackgow committed Aug 21, 2021
1 parent d997f72 commit c53374d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terra_sdk/client/lcd/lcdutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ async def get_tx_encryption_key(self, nonce):
algorithm=hashes.SHA256(),
length=32,
salt=hkdf_salt,
info=b''
info=b'',
backend=None
).derive(master_secret)

return tx_encryption_key
Expand Down

0 comments on commit c53374d

Please sign in to comment.