NBitcoin.BouncyCastle.Crypto.Digests.GeneralDigest.CopyIn C# (CSharp) 메소드

CopyIn() 보호된 메소드

protected CopyIn ( GeneralDigest t ) : void
t GeneralDigest
리턴 void
		protected void CopyIn(GeneralDigest t)
		{
			Array.Copy(t.xBuf, 0, xBuf, 0, t.xBuf.Length);

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