diff options
author | lloyd <[email protected]> | 2015-03-05 04:28:24 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-05 04:28:24 +0000 |
commit | 0c28ab5f95b444649fdaa417dd680ab28a6e7c85 (patch) | |
tree | f3da82aed7603f46feaa5444c2704b8515a39912 /src/lib/hash | |
parent | 2591a2cd863696b91128ff4a8461bb96d497e7b4 (diff) |
In Algo_Registry if a maker func fails, try the next most preferred one
instead of bailing out immediately.
Rename the 'builtin' provider to 'base' since really they are all built in.
Fix MARK-4 when OpenSSL was enabled - it did not respect the skip param.
Diffstat (limited to 'src/lib/hash')
-rw-r--r-- | src/lib/hash/tiger/tiger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hash/tiger/tiger.cpp b/src/lib/hash/tiger/tiger.cpp index d1deb75c9..86da18d24 100644 --- a/src/lib/hash/tiger/tiger.cpp +++ b/src/lib/hash/tiger/tiger.cpp @@ -12,7 +12,7 @@ namespace Botan { -BOTAN_REGISTER_NAMED_T_2LEN(HashFunction, Tiger, "Tiger", "builtin", 24, 3); +BOTAN_REGISTER_NAMED_T_2LEN(HashFunction, Tiger, "Tiger", "base", 24, 3); namespace { |