Crisis.Ionic.Zip.ZipCrypto.UpdateKeys C# (CSharp) Method

UpdateKeys() private method

private UpdateKeys ( byte byteValue ) : void
byteValue byte
return void
        private void UpdateKeys(byte byteValue)
        {
            _Keys[0] = (UInt32)crc32.ComputeCrc32((int)_Keys[0], byteValue);
            _Keys[1] = _Keys[1] + (byte)_Keys[0];
            _Keys[1] = _Keys[1] * 0x08088405 + 1;
            _Keys[2] = (UInt32)crc32.ComputeCrc32((int)_Keys[2], (byte)(_Keys[1] >> 24));
        }