Compartir a través de


CertificateRequestProperties.KeyAlgorithmName Propiedad

Definición

Obtiene o establece el algoritmo de clave 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 de propiedad

String

Platform::String

winrt::hstring

Nombre de algoritmo:

Ejemplos

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;
}

Comentarios

El valor predeterminado es "RSA". Puede usar propiedades en la clase KeyAlgorithmNames para especificar nombres sin errores o para comparar el nombre recuperado por esta propiedad con una cadena conocida.

Se aplica a

Consulte también