System.Security.Cryptography.RijndaelManagedTransform.RijndaelManagedTransform C# (CSharp) Method

RijndaelManagedTransform() private method

private RijndaelManagedTransform ( Rijndael algo, bool encryption, byte key, byte iv ) : System.Runtime.InteropServices
algo Rijndael
encryption bool
key byte
iv byte
return System.Runtime.InteropServices
		internal RijndaelManagedTransform (Rijndael algo, bool encryption, byte[] key, byte[] iv)
		{
			_st = new RijndaelTransform (algo, encryption, key, iv);
			_bs = algo.BlockSize;
		}