X509Certificate.GetCertHashString Método

Definição

Devolve uma cadeia hexadecimal que contém o valor de hash do certificado X.509v3.

Sobrecargas

Name Description
GetCertHashString()

Devolve o valor de hash SHA-1 para o certificado X.509v3 como uma cadeia hexadecimal.

GetCertHashString(HashAlgorithmName)

Devolve uma cadeia hexadecimal contendo o valor de hash do certificado X.509v3 calculado usando o algoritmo de hash criptográfico especificado.

GetCertHashString()

Origem:
X509Certificate.cs
Origem:
X509Certificate.cs
Origem:
X509Certificate.cs
Origem:
X509Certificate.cs
Origem:
X509Certificate.cs

Devolve o valor de hash SHA-1 para o certificado X.509v3 como uma cadeia hexadecimal.

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

Devoluções

A representação hexadecimal da cadeia do valor de hash do certificado X.509.

Exemplos

O exemplo seguinte utiliza o GetCertHashString método para obter um valor hash de certificado X.509, convertê-lo numa cadeia de caracteres e exibi-lo na consola.


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

Aplica-se a

GetCertHashString(HashAlgorithmName)

Origem:
X509Certificate.cs
Origem:
X509Certificate.cs
Origem:
X509Certificate.cs
Origem:
X509Certificate.cs
Origem:
X509Certificate.cs

Devolve uma cadeia hexadecimal contendo o valor de hash do certificado X.509v3 calculado usando o algoritmo de hash criptográfico especificado.

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

Parâmetros

hashAlgorithm
HashAlgorithmName

O nome do algoritmo de hash criptográfico a utilizar.

Devoluções

A representação hexadecimal da cadeia do valor de hash do certificado X.509.

Exceções

hashAlgorithm.Name é null ou uma corda vazia.

hashAlgorithm não é um algoritmo de hash conhecido.

Aplica-se a