CoseKey Constructors

Definition

Overloads

CoseKey(MLDsa)

Source:
CoseKey.cs
public:
 CoseKey(System::Security::Cryptography::MLDsa ^ key);
[System.Diagnostics.CodeAnalysis.Experimental("SYSLIB5006")]
public CoseKey(System.Security.Cryptography.MLDsa key);
public CoseKey(System.Security.Cryptography.MLDsa key);
[<System.Diagnostics.CodeAnalysis.Experimental("SYSLIB5006")>]
new System.Security.Cryptography.Cose.CoseKey : System.Security.Cryptography.MLDsa -> System.Security.Cryptography.Cose.CoseKey
new System.Security.Cryptography.Cose.CoseKey : System.Security.Cryptography.MLDsa -> System.Security.Cryptography.Cose.CoseKey
Public Sub New (key As MLDsa)

Parameters

key
MLDsa
Attributes

Applies to

CoseKey(ECDsa, HashAlgorithmName)

Source:
CoseKey.cs
public:
 CoseKey(System::Security::Cryptography::ECDsa ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public CoseKey(System.Security.Cryptography.ECDsa key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
new System.Security.Cryptography.Cose.CoseKey : System.Security.Cryptography.ECDsa * System.Security.Cryptography.HashAlgorithmName -> System.Security.Cryptography.Cose.CoseKey
Public Sub New (key As ECDsa, hashAlgorithm As HashAlgorithmName)

Parameters

key
ECDsa
hashAlgorithm
HashAlgorithmName

Applies to

CoseKey(RSA, RSASignaturePadding, HashAlgorithmName)

Source:
CoseKey.cs
public:
 CoseKey(System::Security::Cryptography::RSA ^ key, System::Security::Cryptography::RSASignaturePadding ^ signaturePadding, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public CoseKey(System.Security.Cryptography.RSA key, System.Security.Cryptography.RSASignaturePadding signaturePadding, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
new System.Security.Cryptography.Cose.CoseKey : System.Security.Cryptography.RSA * System.Security.Cryptography.RSASignaturePadding * System.Security.Cryptography.HashAlgorithmName -> System.Security.Cryptography.Cose.CoseKey
Public Sub New (key As RSA, signaturePadding As RSASignaturePadding, hashAlgorithm As HashAlgorithmName)

Parameters

key
RSA
signaturePadding
RSASignaturePadding
hashAlgorithm
HashAlgorithmName

Applies to