diff options
author | Kai Michaelis <[email protected]> | 2016-06-01 13:35:07 +0200 |
---|---|---|
committer | Kai Michaelis <[email protected]> | 2016-06-01 13:35:07 +0200 |
commit | 9e6ce11e96676b13205d60f531420be3eb89acd5 (patch) | |
tree | 36bab1abf19e8caa6855a3ef1f4c987ee936008d /src/python | |
parent | f2c8233fdd7e4a9b56dfd77bfb8b137e98fe9022 (diff) |
fix python 3 bindings
Diffstat (limited to 'src/python')
-rwxr-xr-x | src/python/botan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/botan.py b/src/python/botan.py index fa476903c..093359970 100755 --- a/src/python/botan.py +++ b/src/python/botan.py @@ -699,7 +699,7 @@ def test(): def test_kdf(): print("KDF2(SHA-1) %s" % hex_encode(kdf('KDF2(SHA-1)', hex_decode('701F3480DFE95F57941F804B1B2413EF'), 7, - hex_decode('55A4E9DD5F4CA2EF82'), ''))) + hex_decode('55A4E9DD5F4CA2EF82'), hex_decode('')))) def test_pbkdf(): print("PBKDF2(SHA-1) %s" % |