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/emsa_pssr | |
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/emsa_pssr')
-rw-r--r-- | src/lib/pk_pad/emsa_pssr/pssr.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/pk_pad/emsa_pssr/pssr.cpp b/src/lib/pk_pad/emsa_pssr/pssr.cpp index a4744f8f4..06ca007c8 100644 --- a/src/lib/pk_pad/emsa_pssr/pssr.cpp +++ b/src/lib/pk_pad/emsa_pssr/pssr.cpp @@ -5,10 +5,10 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/internal/pad_utils.h> #include <botan/pssr.h> #include <botan/mgf1.h> #include <botan/internal/bit_ops.h> +#include <botan/lookup.h> namespace Botan { @@ -26,8 +26,6 @@ PSSR* PSSR::make(const Spec& request) return nullptr; } -BOTAN_REGISTER_NAMED_T(EMSA, "PSSR", PSSR, PSSR::make); - /* * PSSR Update Operation */ |