Brunet.Security.NullEncryption.CreateDecryptor C# (CSharp) Метод

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

public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
Результат ICryptoTransform
    public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) {
      return new NullTransform();
    }