summary refs log tree commit diff
path: root/crypto/src/crypto/digests/SHA3Digest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/crypto/digests/SHA3Digest.cs')
-rw-r--r--crypto/src/crypto/digests/SHA3Digest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/digests/SHA3Digest.cs b/crypto/src/crypto/digests/SHA3Digest.cs

index 4683af5b3..3dc63a6ed 100644 --- a/crypto/src/crypto/digests/SHA3Digest.cs +++ b/crypto/src/crypto/digests/SHA3Digest.cs
@@ -69,7 +69,7 @@ namespace Org.BouncyCastle.Crypto.Digests if (finalBits >= 8) { - Absorb(new byte[]{ (byte)finalInput }, 0, 1); + Absorb((byte)finalInput); finalBits -= 8; finalInput >>= 8; }