aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/engine.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-09 17:19:53 +0000
committerlloyd <[email protected]>2008-11-09 17:19:53 +0000
commitdb172f9347a15d14ea016bab2f1419eba9a9eac9 (patch)
treee05607175eb80d243d89e80a8b4bd72f9f58ad7b /src/engine/engine.cpp
parentaa9ced8a7ab2f051422fbc07d5702de9fdda8890 (diff)
Inline no-op Engine virtual functions
Diffstat (limited to 'src/engine/engine.cpp')
-rw-r--r--src/engine/engine.cpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp
index e52304c59..59621a7d3 100644
--- a/src/engine/engine.cpp
+++ b/src/engine/engine.cpp
@@ -194,62 +194,6 @@ Engine::~Engine()
delete cache_of_bc_pad;
}
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-BlockCipher* Engine::find_block_cipher(const std::string&) const
- {
- return 0;
- }
-
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-StreamCipher* Engine::find_stream_cipher(const std::string&) const
- {
- return 0;
- }
-
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-HashFunction* Engine::find_hash(const std::string&) const
- {
- return 0;
- }
-
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-MessageAuthenticationCode* Engine::find_mac(const std::string&) const
- {
- return 0;
- }
-
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-S2K* Engine::find_s2k(const std::string&) const
- {
- return 0;
- }
-
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-BlockCipherModePaddingMethod* Engine::find_bc_pad(const std::string&) const
- {
- return 0;
- }
-
-/*************************************************
-* Basic No-Op Engine Implementation *
-*************************************************/
-Keyed_Filter* Engine::get_cipher(const std::string&, Cipher_Dir)
- {
- return 0;
- }
-
namespace Engine_Core {
#if defined(BOTAN_HAS_IF_PUBLIC_KEY_FAMILY)