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

index 541d7f951..1d209a771 100644 --- a/crypto/src/crypto/digests/ParallelHash.cs +++ b/crypto/src/crypto/digests/ParallelHash.cs
@@ -63,6 +63,10 @@ namespace Org.BouncyCastle.Crypto.Digests this.outputLength = source.outputLength; this.buffer = Arrays.Clone(source.buffer); this.compressorBuffer = Arrays.Clone(source.compressorBuffer); + + this.firstOutput = source.firstOutput; + this.nCount = source.nCount; + this.bufOff = source.bufOff; } public virtual string AlgorithmName