diff options
author | lloyd <[email protected]> | 2008-11-10 05:42:06 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-10 05:42:06 +0000 |
commit | 48e8a5487a4146e1e7dab7b6bb316bcafe957d49 (patch) | |
tree | 2a4bef4e059fa2ead18518fbcf3073faabb3da5e /src/libstate | |
parent | fcc8f763c1cd486da1a80176996a342245288d35 (diff) |
Remove unused provider function
Diffstat (limited to 'src/libstate')
-rw-r--r-- | src/libstate/engine/openssl/arc4_openssl.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstate/engine/openssl/arc4_openssl.h b/src/libstate/engine/openssl/arc4_openssl.h index 445642c81..e1b97dda1 100644 --- a/src/libstate/engine/openssl/arc4_openssl.h +++ b/src/libstate/engine/openssl/arc4_openssl.h @@ -13,8 +13,6 @@ namespace Botan { class ARC4_OpenSSL : public StreamCipher { public: - std::string provider() const { return "openssl"; } - void clear() throw() { std::memset(&state, 0, sizeof(state)); } std::string name() const; StreamCipher* clone() const { return new ARC4_OpenSSL(SKIP); } |