Certificate.GetHashValue Méthode
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.
Surcharges
GetHashValue() |
Obtient la valeur de hachage SHA1 pour le certificat. |
GetHashValue(String) |
Obtient la valeur de hachage du certificat pour un algorithme spécifié. |
GetHashValue()
Obtient la valeur de hachage SHA1 pour le certificat.
public:
virtual Platform::Array <byte> ^ GetHashValue() = GetHashValue;
/// [Windows.Foundation.Metadata.Overload("GetHashValue")]
winrt::array_view <byte> GetHashValue();
[Windows.Foundation.Metadata.Overload("GetHashValue")]
public byte[] GetHashValue();
function getHashValue()
Public Function GetHashValue () As Byte()
Retours
Byte[]
byte[]
Valeur de hachage SHA1 pour le certificat.
- Attributs
Voir aussi
S’applique à
GetHashValue(String)
Obtient la valeur de hachage du certificat pour un algorithme spécifié.
public:
virtual Platform::Array <byte> ^ GetHashValue(Platform::String ^ hashAlgorithmName) = GetHashValue;
/// [Windows.Foundation.Metadata.Overload("GetHashValueWithAlgorithm")]
winrt::array_view <byte> GetHashValue(winrt::hstring const& hashAlgorithmName);
[Windows.Foundation.Metadata.Overload("GetHashValueWithAlgorithm")]
public byte[] GetHashValue(string hashAlgorithmName);
function getHashValue(hashAlgorithmName)
Public Function GetHashValue (hashAlgorithmName As String) As Byte()
Paramètres
- hashAlgorithmName
-
String
Platform::String
winrt::hstring
Algorithme de hachage à utiliser pour la valeur de hachage du certificat. Seules les valeurs « SHA1 » ou « SHA256 » sont prises en charge. Pour obtenir la valeur de hachage SHA2 du certificat, spécifiez « SHA256 ».
Retours
Byte[]
byte[]
Valeur de hachage du certificat.
- Attributs