summaryrefslogtreecommitdiff
path: root/chachapoly.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-01-31 07:24:43 -0500
committerJeffrey Walton <noloader@gmail.com>2019-01-31 07:24:43 -0500
commita8290bd66dd181654b66dd71c9f269ef2ed8fa26 (patch)
treebb537fda1a3f3a5b17e6e6dd5d23100912607b6a /chachapoly.h
parent56db805713a722b40c9377365115c4ffe9c92bb2 (diff)
downloadcryptopp-git-a8290bd66dd181654b66dd71c9f269ef2ed8fa26.tar.gz
Remove SimpleKeyingInterface from ChaCha20Poly1305_Base
Diffstat (limited to 'chachapoly.h')
-rw-r--r--chachapoly.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/chachapoly.h b/chachapoly.h
index 2b3a65da..1b7fcde3 100644
--- a/chachapoly.h
+++ b/chachapoly.h
@@ -16,7 +16,6 @@
#include "cryptlib.h"
#include "authenc.h"
-#include "seckey.h"
#include "chacha.h"
#include "poly1305.h"
@@ -25,8 +24,7 @@ NAMESPACE_BEGIN(CryptoPP)
/// \brief ChaCha20Poly1305 cipher base implementation
/// \details Base implementation of the AuthenticatedSymmetricCipher interface
/// \since Crypto++ 8.1
-class ChaCha20Poly1305_Base
- : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 12>, public AuthenticatedSymmetricCipherBase
+class ChaCha20Poly1305_Base : public AuthenticatedSymmetricCipherBase
{
public:
virtual ~ChaCha20Poly1305_Base() {}