コード例 #1
0
 /// <summary>
 /// Creates an instance of the specified implementation of <see cref="DiffieHellman"/>.
 /// </summary>
 /// <param name="algName">The name of the implementation of DiffieHellman to use.</param>
 /// <returns>A new instance of the specified implementation of DiffieHellman.</returns>
 public new static DiffieHellman Create(string algName)
 {
     return((DiffieHellman)CryptoConfig.CreateFromName(algName));
 }