aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap/python
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrap/python')
-rw-r--r--src/wrap/python/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wrap/python/core.cpp b/src/wrap/python/core.cpp
index b1be3b71f..7dac7be7f 100644
--- a/src/wrap/python/core.cpp
+++ b/src/wrap/python/core.cpp
@@ -102,7 +102,7 @@ class Py_HashFunction
u32bit output_length() const
{
- return hash->OUTPUT_LENGTH;
+ return hash->output_length();
}
private:
@@ -123,7 +123,7 @@ class Py_MAC
~Py_MAC() { delete mac; }
- u32bit output_length() const { return mac->OUTPUT_LENGTH; }
+ u32bit output_length() const { return mac->output_length(); }
std::string name() const { return mac->name(); }