summaryrefslogtreecommitdiff
path: root/regtest2.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-02-06 01:03:28 -0500
committerGitHub <noreply@github.com>2019-02-06 01:03:28 -0500
commit26c83877ef30c81054746721f23f8df91ef44337 (patch)
tree1b732c240595f494a52e0e7cb03bac5c7f138178 /regtest2.cpp
parent48531785b74d2f6728282937a105595467b94cc7 (diff)
downloadcryptopp-git-26c83877ef30c81054746721f23f8df91ef44337.tar.gz
Add IETF XChaCha (GH #727, PR #794)
Diffstat (limited to 'regtest2.cpp')
-rw-r--r--regtest2.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/regtest2.cpp b/regtest2.cpp
index 84a3f1d0..e14036fa 100644
--- a/regtest2.cpp
+++ b/regtest2.cpp
@@ -23,6 +23,7 @@
#include "sha3.h"
#include "blake2.h"
#include "ripemd.h"
+#include "chacha.h"
#include "poly1305.h"
#include "siphash.h"
#include "panama.h"
@@ -95,6 +96,7 @@ void RegisterFactories3()
RegisterSymmetricCipherDefaultFactories<XSalsa20>();
RegisterSymmetricCipherDefaultFactories<ChaCha>();
RegisterSymmetricCipherDefaultFactories<ChaChaTLS>();
+ RegisterSymmetricCipherDefaultFactories<XChaCha20>();
RegisterSymmetricCipherDefaultFactories<Sosemanuk>();
RegisterSymmetricCipherDefaultFactories<Rabbit>();
RegisterSymmetricCipherDefaultFactories<RabbitWithIV>();