CertificateRequestProperties.HashAlgorithmName Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l’algorithme de hachage utilisé lors de la création de la signature de demande de certificat.
public:
property Platform::String ^ HashAlgorithmName { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring HashAlgorithmName();
void HashAlgorithmName(winrt::hstring value);
public string HashAlgorithmName { get; set; }
var string = certificateRequestProperties.hashAlgorithmName;
certificateRequestProperties.hashAlgorithmName = string;
Public Property HashAlgorithmName As String
Valeur de propriété
Algorithme de hachage.
Exemples
public String GetSetHashAlgorithm(String strAlgNameIn)
{
// Create a new CertificateRequestProperties object.
CertificateRequestProperties reqProperties = new CertificateRequestProperties();
// The default value is SHA256.
String strDefaultAlgName = reqProperties.HashAlgorithmName;
// If the input option does not equal the default option, reset the property value.
if (strAlgNameIn != strDefaultAlgName)
{
reqProperties.HashAlgorithmName = strAlgNameIn;
}
// Return the algorithm name.
return reqProperties.HashAlgorithmName;
}
Remarques
La valeur par défaut est SHA256.