NSoft.NFramework.Cryptography.Aria.AriaEngine.Decrypt C# (CSharp) Метод

Decrypt() публичный Метод

복호화를 수행하여, 결과를 반환합니다.
public Decrypt ( byte i, int ioffset ) : byte[]
i byte
ioffset int
Результат byte[]
        public byte[] Decrypt(byte[] i, int ioffset) {
            var o = new byte[16];
            Decrypt(i, ioffset, o, 0);
            return o;
        }

Same methods

AriaEngine::Decrypt ( byte i, int ioffset, byte o, int ooffset ) : void