summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2017-06-09 19:22:34 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2017-06-09 19:22:34 +0700
commit726f9cf1b8d319aa9df17cc97104b66e7fa6a5c1 (patch)
tree8b97a8e08eedfb5e08fb070196f99aa72cabf680 /crypto/src
parentPort of latest encodings work from Java (diff)
downloadBouncyCastle.NET-ed25519-726f9cf1b8d319aa9df17cc97104b66e7fa6a5c1.tar.xz
Fix algorithm name for ChaCha7539Engine
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/crypto/engines/ChaCha7539Engine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/engines/ChaCha7539Engine.cs b/crypto/src/crypto/engines/ChaCha7539Engine.cs
index 5a12be016..af4163a02 100644
--- a/crypto/src/crypto/engines/ChaCha7539Engine.cs
+++ b/crypto/src/crypto/engines/ChaCha7539Engine.cs
@@ -19,7 +19,7 @@ namespace Org.BouncyCastle.Crypto.Engines
 
         public override string AlgorithmName
         {
-            get { return "ChaCha" + rounds; }
+            get { return "ChaCha7539" + rounds; }
         }
 
         protected override int NonceSize