X509Certificate.GetHashCode Method
.NET Framework 3.5
Returns the hash code for the X.509v3 certificate as an integer.
Assembly: mscorlib (in mscorlib.dll)
The following example uses the GetHashCode method to return an integer representation of a certificate's hash code and displays it to the console.
Imports System 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
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.