System.Security.Cryptography.SymmetricAlgorithm.GenerateKey C# (CSharp) 메소드

GenerateKey() 공개 추상적인 메소드

public abstract GenerateKey ( ) : void
리턴 void
        public abstract void GenerateKey();

Usage Example

예제 #1
0
		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