aboutsummaryrefslogtreecommitdiffstats
path: root/src/python
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-08-17 18:21:46 -0400
committerJack Lloyd <[email protected]>2019-08-19 09:50:18 -0400
commit26554240bead691e958ada9751bb523ecbedfb24 (patch)
tree964419e3103fd641fd7372d3ef856ef2add38ab6 /src/python
parentd5ebaadb7cca8898564cbe097e706e9d79cd97ac (diff)
Deprecate some more redundant ffi functions
Diffstat (limited to 'src/python')
-rwxr-xr-xsrc/python/botan2.py21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/python/botan2.py b/src/python/botan2.py
index 05c7cd481..e7e685802 100755
--- a/src/python/botan2.py
+++ b/src/python/botan2.py
@@ -816,8 +816,11 @@ def pbkdf(algo, password, out_len, iterations=10000, salt=None):
salt = RandomNumberGenerator().get(12)
out_buf = create_string_buffer(out_len)
- _DLL.botan_pbkdf(_ctype_str(algo), out_buf, out_len,
- _ctype_str(password), salt, len(salt), iterations)
+
+ _DLL.botan_pwdhash(_ctype_str(algo), iterations, 0, 0,
+ out_buf, out_len,
+ _ctype_str(password), len(password),
+ salt, len(salt))
return (salt, iterations, out_buf.raw)
def pbkdf_timed(algo, password, out_len, ms_to_run=300, salt=None):
@@ -826,8 +829,12 @@ def pbkdf_timed(algo, password, out_len, ms_to_run=300, salt=None):
out_buf = create_string_buffer(out_len)
iterations = c_size_t(0)
- _DLL.botan_pbkdf_timed(_ctype_str(algo), out_buf, out_len, _ctype_str(password),
- salt, len(salt), ms_to_run, byref(iterations))
+
+ _DLL.botan_pwdhash_timed(_ctype_str(algo), c_uint32(ms_to_run),
+ byref(iterations), None, None,
+ out_buf, out_len,
+ _ctype_str(password), len(password),
+ salt, len(salt))
return (salt, iterations.value, out_buf.raw)
#
@@ -835,8 +842,10 @@ def pbkdf_timed(algo, password, out_len, ms_to_run=300, salt=None):
#
def scrypt(out_len, password, salt, n=1024, r=8, p=8):
out_buf = create_string_buffer(out_len)
- _DLL.botan_scrypt(out_buf, out_len, _ctype_str(password),
- _ctype_bits(salt), len(salt), n, r, p)
+ _DLL.botan_pwdhash(_ctype_str("Scrypt"), n, r, p,
+ out_buf, out_len,
+ _ctype_str(password), len(password),
+ _ctype_bits(salt), len(salt))
return out_buf.raw