diff options
author | Jack Lloyd <[email protected]> | 2015-09-11 22:44:45 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-09-11 22:44:45 -0400 |
commit | 72719f52640d2ac3ff00fce46a72082e5938d212 (patch) | |
tree | 51018f639724326c0e967eb7372a762ce0b89e53 /src/lib/pk_pad/eme_oaep/oaep.cpp | |
parent | 8211fdc11fa3bbe692b50d42126f74d259a4a96a (diff) |
Fix pbkdf, pk padding and ECDH registration for static linking.
With this change the tests pass when linked against a static library
built in the normal (non-amalgamation) fashion.
Remove the restriction in configure.py, and have circleci build the
clang static build as a non-amalg.
Diffstat (limited to 'src/lib/pk_pad/eme_oaep/oaep.cpp')
-rw-r--r-- | src/lib/pk_pad/eme_oaep/oaep.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/pk_pad/eme_oaep/oaep.cpp b/src/lib/pk_pad/eme_oaep/oaep.cpp index 871f40142..a484202da 100644 --- a/src/lib/pk_pad/eme_oaep/oaep.cpp +++ b/src/lib/pk_pad/eme_oaep/oaep.cpp @@ -5,11 +5,10 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/internal/pad_utils.h> #include <botan/oaep.h> #include <botan/mgf1.h> #include <botan/mem_ops.h> - +#include <botan/lookup.h> namespace Botan { @@ -28,9 +27,6 @@ OAEP* OAEP::make(const Spec& request) return nullptr; } -BOTAN_REGISTER_NAMED_T(EME, "OAEP", OAEP, OAEP::make); - - /* * OAEP Pad Operation */ |