Renci.SshNet.Security.Cryptography.Ciphers.AesCipher.UnPackBlock C# (CSharp) Méthode

UnPackBlock() private méthode

private UnPackBlock ( byte bytes, int off ) : void
bytes byte
off int
Résultat void
        private void UnPackBlock(byte[] bytes, int off)
        {
            C0 = LittleEndianToUInt32(bytes, off);
            C1 = LittleEndianToUInt32(bytes, off + 4);
            C2 = LittleEndianToUInt32(bytes, off + 8);
            C3 = LittleEndianToUInt32(bytes, off + 12);
        }