diff options
author | lloyd <[email protected]> | 2014-11-29 14:16:26 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-11-29 14:16:26 +0000 |
commit | e89b6a365e56283a945aeda8ed2b427937fe5d91 (patch) | |
tree | e01cd34049831debff697de3f11fb54d175a8b81 /src/lib/pubkey/mce/mceliece_key.h | |
parent | 71ff50357af5183995c9af59f1816f065ce9a857 (diff) |
Move all PK workfactor esstimators to workfactors.*
Diffstat (limited to 'src/lib/pubkey/mce/mceliece_key.h')
-rw-r--r-- | src/lib/pubkey/mce/mceliece_key.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/pubkey/mce/mceliece_key.h b/src/lib/pubkey/mce/mceliece_key.h index c51745bba..1a9a699f4 100644 --- a/src/lib/pubkey/mce/mceliece_key.h +++ b/src/lib/pubkey/mce/mceliece_key.h @@ -15,7 +15,6 @@ #include <botan/exceptn.h> #include <botan/pk_keys.h> #include <botan/polyn_gf2m.h> -#include <botan/code_based_util.h> namespace Botan { @@ -47,7 +46,7 @@ class BOTAN_DLL McEliece_PublicKey : public virtual Public_Key AlgorithmIdentifier algorithm_identifier() const; - size_t estimated_strength() const { return 0; } + size_t estimated_strength() const; std::vector<byte> x509_subject_public_key() const; |