NBitcoin.BouncyCastle.Crypto.Digests.LongDigest.Reset C# (CSharp) 메소드

Reset() 공개 메소드

public Reset ( ) : void
리턴 void
		public virtual void Reset()
		{
			byteCount1 = 0;
			byteCount2 = 0;

			xBufOff = 0;
			for(int i = 0; i < xBuf.Length; i++)
			{
				xBuf[i] = 0;
			}

			wOff = 0;
			Array.Clear(W, 0, W.Length);
		}

Same methods

LongDigest::Reset ( IMemoable t ) : void