aboutsummaryrefslogtreecommitdiffstats
path: root/include/cmac.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cmac.h')
-rw-r--r--include/cmac.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cmac.h b/include/cmac.h
index de3f8b87a..c7f107258 100644
--- a/include/cmac.h
+++ b/include/cmac.h
@@ -19,6 +19,10 @@ class BOTAN_DLL CMAC : public MessageAuthenticationCode
void clear() throw();
std::string name() const;
MessageAuthenticationCode* clone() const;
+
+ static SecureVector<byte> poly_double(const MemoryRegion<byte>& in,
+ byte polynomial);
+
CMAC(const std::string&);
~CMAC() { delete e; }
private: