summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-08-19 14:40:01 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-08-19 14:40:01 +0700
commit1a1e1ea35e0643e5c04254da9af45b2bc21e6502 (patch)
tree6dab449676d4fd58b7a99f25a6ac13b5d40dc3c9
parentRemove ReversedWindowGenerator (diff)
downloadBouncyCastle.NET-ed25519-1a1e1ea35e0643e5c04254da9af45b2bc21e6502.tar.xz
Remove unnecessary TODO
-rw-r--r--crypto/src/crypto/prng/drbg/HashSP800Drbg.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/src/crypto/prng/drbg/HashSP800Drbg.cs b/crypto/src/crypto/prng/drbg/HashSP800Drbg.cs
index accc65ec3..3f1c628bd 100644
--- a/crypto/src/crypto/prng/drbg/HashSP800Drbg.cs
+++ b/crypto/src/crypto/prng/drbg/HashSP800Drbg.cs
@@ -137,7 +137,6 @@ namespace Org.BouncyCastle.Crypto.Prng.Drbg
 	            byte[] newInput = new byte[1 + mV.Length + additionalInput.Length];
 	            newInput[0] = 0x02;
 	            Array.Copy(mV, 0, newInput, 1, mV.Length);
-	            // TODO: inOff / inLength
 	            Array.Copy(additionalInput, 0, newInput, 1 + mV.Length, additionalInput.Length);
 	            byte[] w = Hash(newInput);