ProcessBlock() public method

public ProcessBlock ( byte input, int inOff, byte outBytes, int outOff ) : int
input byte
inOff int
outBytes byte
outOff int
return int
Ejemplo n.º 1
0
 public void Update(byte input)
 {
     if (bufOff == Buffer.Length)
     {
         cipher.ProcessBlock(Buffer, 0, mac, 0);
         bufOff = 0;
     }
     Buffer[bufOff++] = input;
 }