CertificateRequestProperties.KeyAlgorithmName Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
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.