Compartilhar via


CertificateRequestProperties.KeyAlgorithmName Propriedade

Definição

Obtém ou define o algoritmo de chave pública.

public:
 property Platform::String ^ KeyAlgorithmName { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring KeyAlgorithmName();

void KeyAlgorithmName(winrt::hstring value);
public string KeyAlgorithmName { get; set; }
var string = certificateRequestProperties.keyAlgorithmName;
certificateRequestProperties.keyAlgorithmName = string;
Public Property KeyAlgorithmName As String

Valor da propriedade

String

Platform::String

winrt::hstring

Nome do algoritmo.

Exemplos

public String GetSetPublicKeyAlgorithm(String strAlgNameIn)
{
    // Create a new CertificateRequestProperties object.
    CertificateRequestProperties reqProperties = new CertificateRequestProperties();

    // The default value is RSA.
    String strDefaultAlgName = reqProperties.KeyAlgorithmName;

    // If the input option does not equal the default option, reset the property value.
    if (strAlgNameIn != strDefaultAlgName)
    {
        reqProperties.KeyAlgorithmName = strAlgNameIn;
    }

    // Return the algorithm name.
    return reqProperties.KeyAlgorithmName;
}

Comentários

O valor padrão é "RSA". Você pode usar propriedades na classe KeyAlgorithmNames para especificar nomes sem erros ou para comparar o nome recuperado por essa propriedade com uma cadeia de caracteres conhecida.

Aplica-se a

Confira também