Org.BouncyCastle.Crypto.BufferedStreamCipher.BufferedStreamCipher C# (CSharp) Method

BufferedStreamCipher() public method

public BufferedStreamCipher ( IStreamCipher cipher ) : System
cipher IStreamCipher
return System
		public BufferedStreamCipher(
			IStreamCipher cipher)
		{
			if (cipher == null)
				throw new ArgumentNullException("cipher");

			this.cipher = cipher;
		}