diff options
author | lloyd <[email protected]> | 2013-04-10 14:57:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-04-10 14:57:44 +0000 |
commit | c90743bd7ce310da79fe5e4318851f1370868362 (patch) | |
tree | eea9fc0a4036358d50766ced2865f8cd38016624 /src | |
parent | 70c3f7edc155bdbc2630e0086536a1c90506b5b9 (diff) |
Lost get_aead decl in revert
Diffstat (limited to 'src')
-rw-r--r-- | src/aead/aead.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/aead/aead.h b/src/aead/aead.h index e0e07e8ab..1daa67f59 100644 --- a/src/aead/aead.h +++ b/src/aead/aead.h @@ -94,6 +94,11 @@ class AEAD_Mode : public SymmetricAlgorithm virtual ~AEAD_Mode() {} }; +/** +* Get an AEAD mode by name (eg "AES-128/GCM" or "Serpent/EAX") +*/ +BOTAN_DLL AEAD_Mode* get_aead(const std::string& name, Cipher_Dir direction); + } #endif |