X509Certificate.GetHashCode 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.
Retourne le code de hachage du certificat X.509v3 sous forme d’entier.
public:
override int GetHashCode();
public override int GetHashCode();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
Retours
Code de hachage pour le certificat X.509 en tant qu’entier.
Exemples
L’exemple suivant utilise la GetHashCode méthode pour retourner une représentation entière du code de hachage d’un certificat et l’afficher à la console.
using System;
using System.Security.Cryptography.X509Certificates;
public class X509
{
public static void Main()
{
// The path to the certificate.
string Certificate = "Certificate.cer";
// Load the certificate into an X509Certificate object.
X509Certificate cert = X509Certificate.CreateFromCertFile(Certificate);
// Get the value.
int results = cert.GetHashCode();
// Display the value to the console.
Console.WriteLine(results);
}
}
Imports System.Security.Cryptography.X509Certificates
Public Class X509
Public Shared Sub Main()
' The path to the certificate.
Dim Certificate As String = "Certificate.cer"
' Load the certificate into an X509Certificate object.
Dim cert As X509Certificate = X509Certificate.CreateFromCertFile(Certificate)
' Get the value.
Dim results As Integer = cert.GetHashCode()
' Display the value to the console.
Console.WriteLine(results)
End Sub
End Class
Remarques
Si le hachage de certificat X.509 est un tableau de plus de 4 octets, n’importe quel octet après le quatrième octet n’est pas vu dans cette représentation entière.