Share via


RsaKey Constructors

Definition

Overloads

RsaKey()
RsaKey(String)
RsaKey(String, Int32)
RsaKey(String, RSA)
RsaKey(String, RSAParameters)

RsaKey()

Source:
RsaKey.cs
public RsaKey ();
Public Sub New ()

Applies to

RsaKey(String)

Source:
RsaKey.cs
public RsaKey (string kid);
new Microsoft.Azure.KeyVault.RsaKey : string -> Microsoft.Azure.KeyVault.RsaKey
Public Sub New (kid As String)

Parameters

kid
String

Applies to

RsaKey(String, Int32)

Source:
RsaKey.cs
public RsaKey (string kid, int keySize);
new Microsoft.Azure.KeyVault.RsaKey : string * int -> Microsoft.Azure.KeyVault.RsaKey
Public Sub New (kid As String, keySize As Integer)

Parameters

kid
String
keySize
Int32

Applies to

RsaKey(String, RSA)

Source:
RsaKey.cs
public RsaKey (string kid, System.Security.Cryptography.RSA csp);
new Microsoft.Azure.KeyVault.RsaKey : string * System.Security.Cryptography.RSA -> Microsoft.Azure.KeyVault.RsaKey
Public Sub New (kid As String, csp As RSA)

Parameters

kid
String
csp
RSA

Applies to

RsaKey(String, RSAParameters)

Source:
RsaKey.cs
public RsaKey (string kid, System.Security.Cryptography.RSAParameters keyParameters);
new Microsoft.Azure.KeyVault.RsaKey : string * System.Security.Cryptography.RSAParameters -> Microsoft.Azure.KeyVault.RsaKey
Public Sub New (kid As String, keyParameters As RSAParameters)

Parameters

kid
String
keyParameters
RSAParameters

Applies to