diff options
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/src/crypto/digests/ParallelHash.cs | 4 |
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 |