System.Security.Cryptography.AsymmetricAlgorithm.Create C# (CSharp) Method

Create() public static method

public static Create ( ) : AsymmetricAlgorithm
return AsymmetricAlgorithm
		public static AsymmetricAlgorithm Create () 
		{
			return Create ("System.Security.Cryptography.AsymmetricAlgorithm");
		}
	

Same methods

AsymmetricAlgorithm::Create ( string algName ) : AsymmetricAlgorithm

Usage Example

Example #1
0
 /// <summary>Creates a default cryptographic object used to perform the asymmetric algorithm.</summary>
 /// <returns>A new <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider" /> instance, unless the default settings have been changed with the &lt;cryptoClass&gt; element.</returns>
 // Token: 0x060020DC RID: 8412 RVA: 0x00072C22 File Offset: 0x00070E22
 public static AsymmetricAlgorithm Create()
 {
     return(AsymmetricAlgorithm.Create("System.Security.Cryptography.AsymmetricAlgorithm"));
 }