X509Certificate.GetCertHashString Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zwraca ciąg szesnastkowy zawierający wartość skrótu certyfikatu X.509v3.
Przeciążenia
GetCertHashString() |
Zwraca wartość skrótu SHA1 dla certyfikatu X.509v3 jako ciąg szesnastkowy. |
GetCertHashString(HashAlgorithmName) |
Zwraca ciąg szesnastkowy zawierający wartość skrótu dla certyfikatu X.509v3 obliczonego przy użyciu określonego algorytmu wyznaczania wartości skrótu kryptograficznego. |
GetCertHashString()
- Źródło:
- X509Certificate.cs
- Źródło:
- X509Certificate.cs
- Źródło:
- X509Certificate.cs
Zwraca wartość skrótu SHA1 dla certyfikatu X.509v3 jako ciąg szesnastkowy.
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
Zwraca
Reprezentacja ciągu szesnastkowego wartości skrótu certyfikatu X.509.
Przykłady
W poniższym przykładzie GetCertHashString użyto metody , aby uzyskać wartość skrótu certyfikatu X.509, przekonwertować ją na ciąg i wyświetlić ją w konsoli.
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
Dotyczy
GetCertHashString(HashAlgorithmName)
- Źródło:
- X509Certificate.cs
- Źródło:
- X509Certificate.cs
- Źródło:
- X509Certificate.cs
Zwraca ciąg szesnastkowy zawierający wartość skrótu dla certyfikatu X.509v3 obliczonego przy użyciu określonego algorytmu wyznaczania wartości skrótu kryptograficznego.
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
Parametry
- hashAlgorithm
- HashAlgorithmName
Nazwa algorytmu skrótu kryptograficznego do użycia.
Zwraca
Reprezentacja ciągu szesnastkowego wartości skrótu certyfikatu X.509.
Wyjątki
hashAlgorithm
.Name jest lub pusty null
ciąg.
hashAlgorithm
nie jest znanym algorytmem skrótu.