aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/engine/def_engine/def_eng.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-10 21:14:59 +0000
committerlloyd <[email protected]>2008-11-10 21:14:59 +0000
commit04280f4ff97d842a4af15f2e4ea2b87e6095b126 (patch)
treebf56e261ab2ef6b033b7e0761868eb0437e9e12d /src/libstate/engine/def_engine/def_eng.h
parent13a012955bf68d028ee0cd515e49137b7d95f5e6 (diff)
Move MACs also to Algorithm_Factory
Diffstat (limited to 'src/libstate/engine/def_engine/def_eng.h')
-rw-r--r--src/libstate/engine/def_engine/def_eng.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstate/engine/def_engine/def_eng.h b/src/libstate/engine/def_engine/def_eng.h
index 490ef1def..fe05e9fce 100644
--- a/src/libstate/engine/def_engine/def_eng.h
+++ b/src/libstate/engine/def_engine/def_eng.h
@@ -64,10 +64,11 @@ class BOTAN_DLL Default_Engine : public Engine
BlockCipher* find_block_cipher(const std::string&) const;
StreamCipher* find_stream_cipher(const std::string&) const;
- HashFunction* find_hash(const SCAN_Name& requst,
+ HashFunction* find_hash(const SCAN_Name& reqeust,
Algorithm_Factory&) const;
- MessageAuthenticationCode* find_mac(const std::string&) const;
+ MessageAuthenticationCode* find_mac(const SCAN_Name& reqeust,
+ Algorithm_Factory&) const;
};
}