diff options
author | lloyd <[email protected]> | 2010-10-13 02:45:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 02:45:00 +0000 |
commit | 63121e1e169616f724bf79b8aac1a2b4423c8904 (patch) | |
tree | 2375d5b5daaad8990b2cee951d137f2e7638e79b /src/wrap | |
parent | 879d062c2b93e32362e338d1c6f9b1eda0f88493 (diff) |
Use output_length() instead of OUTPUT_LENGTH pseudo-property
Diffstat (limited to 'src/wrap')
-rw-r--r-- | src/wrap/python/core.cpp | 4 |
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(); } |