System.Security.Cryptography.SHA1Internal.Initialize C# (CSharp) Method

Initialize() public method

public Initialize ( ) : void
return void
		public void Initialize () 
		{
			count = 0;
			_ProcessingBufferCount = 0;

			_H[0] = 0x67452301;
			_H[1] = 0xefcdab89;
			_H[2] = 0x98badcfe;
			_H[3] = 0x10325476;
			_H[4] = 0xC3D2E1F0;
		}

Usage Example

Beispiel #1
0
 public override void Initialize()
 {
     sha.Initialize();
 }