Org.BouncyCastle.Crypto.StreamBlockCipher.Init C# (CSharp) Method

Init() public method

public Init ( bool forEncryption, ICipherParameters parameters ) : void
forEncryption bool
parameters ICipherParameters
return void
		public void Init(
			bool				forEncryption,
			ICipherParameters	parameters)
		{
			cipher.Init(forEncryption, parameters);
		}