AsymmetricAlgorithmNames.EcdsaP384Sha384 Property

Definition

Retrieves a string that contains "ECDSA_P384_SHA384".

public:
 static property Platform::String ^ EcdsaP384Sha384 { Platform::String ^ get(); };
static winrt::hstring EcdsaP384Sha384();
public static string EcdsaP384Sha384 { get; }
var string = AsymmetricAlgorithmNames.ecdsaP384Sha384;
Public Shared ReadOnly Property EcdsaP384Sha384 As String

Property Value

String

Platform::String

winrt::hstring

String that contains "ECDSA_P384_SHA384".

Remarks

Use the string retrieved by this property to set the asymmetric algorithm name when you call the OpenAlgorithm method. The string represents an Elliptic Curve Digital Signature Algorithm (ECDSA) that uses a 384-bit public key and a Secure Hashing Algorithm (SHA) to hash the message contents before signing. The length of the hash is 384 bits.

Note

You must specify a value of 384 when calling the CreateKeyPair method to create keys that are compatible with this algorithm.

Applies to

See also