RSA.Create Method

Definition

Allows specific implementations of RSA to be instantiated.

Overloads

Create()

Creates an instance of the default implementation of the RSA algorithm.

Create(Int32)

Creates a new ephemeral RSA key with the specified key size.

Create(RSAParameters)

Creates a new ephemeral RSA key with the specified RSA key parameters.

Create(String)
Obsolete.

Creates an instance of the specified implementation of RSA.

Create()

Creates an instance of the default implementation of the RSA algorithm.

public:
 static System::Security::Cryptography::RSA ^ Create();
public static System.Security.Cryptography.RSA Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create ();
static member Create : unit -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.RSA
Public Shared Function Create () As RSA

Returns

RSA

A new instance of the default implementation of RSA.

Attributes

See also

Applies to

Create(Int32)

Creates a new ephemeral RSA key with the specified key size.

public:
 static System::Security::Cryptography::RSA ^ Create(int keySizeInBits);
public static System.Security.Cryptography.RSA Create (int keySizeInBits);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create (int keySizeInBits);
static member Create : int -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : int -> System.Security.Cryptography.RSA
Public Shared Function Create (keySizeInBits As Integer) As RSA

Parameters

keySizeInBits
Int32

The key size, in bits.

Returns

RSA

A new ephemeral RSA key with the specified key size.

Attributes

Exceptions

keySizeInBits is not supported by the default implementation.

Applies to

Create(RSAParameters)

Creates a new ephemeral RSA key with the specified RSA key parameters.

public:
 static System::Security::Cryptography::RSA ^ Create(System::Security::Cryptography::RSAParameters parameters);
public static System.Security.Cryptography.RSA Create (System.Security.Cryptography.RSAParameters parameters);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create (System.Security.Cryptography.RSAParameters parameters);
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
Public Shared Function Create (parameters As RSAParameters) As RSA

Parameters

parameters
RSAParameters

The parameters for the RSA algorithm.

Returns

RSA

A new ephemeral RSA key.

Attributes

Exceptions

parameters does not represent a valid RSA key.

See also

Applies to

Create(String)

Caution

Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.

Creates an instance of the specified implementation of RSA.

public:
 static System::Security::Cryptography::RSA ^ Create(System::String ^ algName);
public static System.Security.Cryptography.RSA? Create (string algName);
[System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.RSA? Create (string algName);
public static System.Security.Cryptography.RSA Create (string algName);
static member Create : string -> System.Security.Cryptography.RSA
[<System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : string -> System.Security.Cryptography.RSA
Public Shared Function Create (algName As String) As RSA

Parameters

algName
String

The name of the implementation of RSA to use.

Returns

RSA

A new instance of the specified implementation of RSA.

Attributes

See also

Applies to