Share via


X509Certificate.GetCertHashString Metode

Definisi

Mengembalikan string heksadesimal yang berisi nilai hash untuk sertifikat X.509v3.

Overload

GetCertHashString()

Mengembalikan nilai hash SHA1 untuk sertifikat X.509v3 sebagai string heksadesimal.

GetCertHashString(HashAlgorithmName)

Mengembalikan string heksadesimal yang berisi nilai hash untuk sertifikat X.509v3 yang dihitung menggunakan algoritma hash kriptografi yang ditentukan.

GetCertHashString()

Sumber:
X509Certificate.cs
Sumber:
X509Certificate.cs
Sumber:
X509Certificate.cs

Mengembalikan nilai hash SHA1 untuk sertifikat X.509v3 sebagai string heksadesimal.

public:
 virtual System::String ^ GetCertHashString();
public virtual string GetCertHashString ();
abstract member GetCertHashString : unit -> string
override this.GetCertHashString : unit -> string
Public Overridable Function GetCertHashString () As String

Mengembalikan

Representasi string heksadesimal dari nilai hash sertifikat X.509.

Contoh

Contoh berikut menggunakan GetCertHashString metode untuk mendapatkan nilai hash sertifikat X.509, mengonversinya menjadi string, dan menampilkannya ke konsol.

using namespace System;
using namespace System::Security::Cryptography::X509Certificates;
int 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.
   String^ results = cert->GetCertHashString();
   
   // Display the value to the console.
   Console::WriteLine( results );
}

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.
        string results = cert.GetCertHashString();

        // 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 String = cert.GetCertHashString()
      
      ' Display the value to the console.
      Console.WriteLine(results)
   End Sub 
End Class

Berlaku untuk

GetCertHashString(HashAlgorithmName)

Sumber:
X509Certificate.cs
Sumber:
X509Certificate.cs
Sumber:
X509Certificate.cs

Mengembalikan string heksadesimal yang berisi nilai hash untuk sertifikat X.509v3 yang dihitung menggunakan algoritma hash kriptografi yang ditentukan.

public:
 virtual System::String ^ GetCertHashString(System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual string GetCertHashString (System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member GetCertHashString : System.Security.Cryptography.HashAlgorithmName -> string
override this.GetCertHashString : System.Security.Cryptography.HashAlgorithmName -> string
Public Overridable Function GetCertHashString (hashAlgorithm As HashAlgorithmName) As String

Parameter

hashAlgorithm
HashAlgorithmName

Nama algoritma hash kriptografi yang akan digunakan.

Mengembalikan

Representasi string heksadesimal dari nilai hash sertifikat X.509.

Pengecualian

hashAlgorithm.Name adalah null atau string kosong.

hashAlgorithm bukan algoritma hash yang diketahui.

Berlaku untuk