Org.BouncyCastle.Crypto.BufferedCipherBase.ProcessBytes C# (CSharp) Method

ProcessBytes() public method

public ProcessBytes ( byte input ) : byte[]
input byte
return byte[]
		public virtual byte[] ProcessBytes(
			byte[] input)
		{
			return ProcessBytes(input, 0, input.Length);
		}

Same methods

BufferedCipherBase::ProcessBytes ( byte input, int inOff, int length ) : byte[]
BufferedCipherBase::ProcessBytes ( byte input, byte output, int outOff ) : int
BufferedCipherBase::ProcessBytes ( byte input, int inOff, int length, byte output, int outOff ) : int