AsymmetricAlgorithmNames.RsaSignPkcs1Sha256 Property

Definition

Retrieves a string that contains "RSASIGN_PKCS1_SHA256".

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

Property Value

String

Platform::String

winrt::hstring

String that contains "RSASIGN_PKCS1_SHA256".

Remarks

Use the string retrieved by this property to set the asymmetric algorithm name when you call the OpenAlgorithm method. The string represents an RSA signing algorithm that uses PKCS1 to pad the plaintext and the Secure Hashing Algorithm (SHA) to hash the message contents before signing. The length of the SHA hash is 256 bits.

Applies to

See also