bytesToLongFromBuffer() private static method

private static bytesToLongFromBuffer ( byte buffer, int startPos ) : long
buffer byte
startPos int
return long
コード例 #1
0
 private void processFilledBuffer()
 {
     for (int i = 0; i < this._state.Length; i++)
     {
         this._block[i] = WhirlpoolDigest.bytesToLongFromBuffer(this._buffer, i * 8);
     }
     this.processBlock();
     this._bufferPos = 0;
     Array.Clear(this._buffer, 0, this._buffer.Length);
 }