aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-04-10 14:57:44 +0000
committerlloyd <[email protected]>2013-04-10 14:57:44 +0000
commitc90743bd7ce310da79fe5e4318851f1370868362 (patch)
treeeea9fc0a4036358d50766ced2865f8cd38016624 /src
parent70c3f7edc155bdbc2630e0086536a1c90506b5b9 (diff)
Lost get_aead decl in revert
Diffstat (limited to 'src')
-rw-r--r--src/aead/aead.h5
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