System.Security.Cryptography.SymmetricAlgorithm.GenerateKey C# (CSharp) Method

GenerateKey() public abstract method

public abstract GenerateKey ( ) : void
return void
        public abstract void GenerateKey();

Usage Example

		public NetCryptoProviderBase(NetPeer peer, SymmetricAlgorithm algo)
			: base(peer)
		{
			m_algorithm = algo;
			m_algorithm.GenerateKey();
			m_algorithm.GenerateIV();
		}
All Usage Examples Of System.Security.Cryptography.SymmetricAlgorithm::GenerateKey