Brunet.Security.NullEncryption.CreateEncryptor C# (CSharp) Méthode

CreateEncryptor() public méthode

public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
Résultat ICryptoTransform
    public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) {
      return new NullTransform();
    }
  }