NBitcoin.BouncyCastle.Crypto.Digests.GeneralDigest.CopyIn C# (CSharp) Méthode

CopyIn() protected méthode

protected CopyIn ( GeneralDigest t ) : void
t GeneralDigest
Résultat void
		protected void CopyIn(GeneralDigest t)
		{
			Array.Copy(t.xBuf, 0, xBuf, 0, t.xBuf.Length);

			xBufOff = t.xBufOff;
			byteCount = t.byteCount;
		}