aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/stream/stream_cipher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/stream/stream_cipher.cpp')
-rw-r--r--src/lib/stream/stream_cipher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/stream/stream_cipher.cpp b/src/lib/stream/stream_cipher.cpp
index 4b27caafe..dfe1fa69b 100644
--- a/src/lib/stream/stream_cipher.cpp
+++ b/src/lib/stream/stream_cipher.cpp
@@ -74,7 +74,7 @@ std::unique_ptr<StreamCipher> StreamCipher::create(const std::string& algo_spec,
if(req.algo_name() == "SHAKE-128")
{
if(provider.empty() || provider == "base")
- return std::unique_ptr<StreamCipher>(new SHAKE_128);
+ return std::unique_ptr<StreamCipher>(new SHAKE_128_Cipher);
}
#endif