System.Security.Cryptography.RijndaelManagedTransform.RijndaelManagedTransform C# (CSharp) Метод

RijndaelManagedTransform() приватный Метод

private RijndaelManagedTransform ( Rijndael algo, bool encryption, byte key, byte iv ) : System.Runtime.InteropServices
algo Rijndael
encryption bool
key byte
iv byte
Результат System.Runtime.InteropServices
		internal RijndaelManagedTransform (Rijndael algo, bool encryption, byte[] key, byte[] iv)
		{
			_st = new RijndaelTransform (algo, encryption, key, iv);
			_bs = algo.BlockSize;
		}