EcKey Constructors

Definition

Overloads

EcKey()
EcKey(String)
EcKey(String, ECDsa)
EcKey(String, String)
EcKey(String, String, Byte[], Byte[], Byte[])

EcKey()

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

Applies to

EcKey(String)

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

Parameters

kid
String

Applies to

EcKey(String, ECDsa)

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

Parameters

kid
String
ecdsa
ECDsa

Applies to

EcKey(String, String)

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

Parameters

kid
String
curve
String

Applies to

EcKey(String, String, Byte[], Byte[], Byte[])

Source:
EcKey.cs
public EcKey (string kid, string curve, byte[] x, byte[] y, byte[] d = default);
new Microsoft.Azure.KeyVault.EcKey : string * string * byte[] * byte[] * byte[] -> Microsoft.Azure.KeyVault.EcKey
Public Sub New (kid As String, curve As String, x As Byte(), y As Byte(), Optional d As Byte() = Nothing)

Parameters

kid
String
curve
String
x
Byte[]
y
Byte[]
d
Byte[]

Applies to