BraintreeEncryption.Library.BouncyCastle.Crypto.Engines.RsaEngine.ProcessBlock C# (CSharp) Method

ProcessBlock() public method

public ProcessBlock ( byte inBuf, int inOff, int inLen ) : byte[]
inBuf byte
inOff int
inLen int
return byte[]
        public byte[] ProcessBlock(
            byte[]	inBuf,
            int		inOff,
            int		inLen)
        {
            if (core == null)
                throw new InvalidOperationException("RSA engine not initialised");

            return core.ConvertOutput(core.ProcessBlock(core.ConvertInput(inBuf, inOff, inLen)));
        }