Brunet.Security.NullEncryption.CreateEncryptor C# (CSharp) 메소드

CreateEncryptor() 공개 메소드

public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
리턴 ICryptoTransform
    public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) {
      return new NullTransform();
    }
  }