コード例 #1
0
 protected override void HashCore(byte[] rgb, int ibStart, int cbSize)
 {
     State = 1;
     sha.HashCore(rgb, ibStart, cbSize);
 }
コード例 #2
0
 void IHashAlgorithm.TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount)
 {
     sha.HashCore(inputBuffer, inputOffset, inputCount);
 }