X509Certificate.GetCertHashString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回包含 X.509v3 憑證雜湊值的十六進位字串。
多載
GetCertHashString() |
將 X.509v3 憑證的 SHA1 雜湊值傳回為十六進位的字串。 |
GetCertHashString(HashAlgorithmName) |
傳回包含使用指定密碼編譯雜湊演算法所計算 X.509v3 憑證雜湊值的十六進位字串。 |
GetCertHashString()
將 X.509v3 憑證的 SHA1 雜湊值傳回為十六進位的字串。
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
傳回
X.509 憑證雜湊值的十六進位字串表示。
範例
下列範例會 GetCertHashString 使用 方法來取得 X.509 憑證哈希值、將它轉換成字串,並將其顯示至主控台。
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
適用於
GetCertHashString(HashAlgorithmName)
傳回包含使用指定密碼編譯雜湊演算法所計算 X.509v3 憑證雜湊值的十六進位字串。
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
參數
- hashAlgorithm
- HashAlgorithmName
要使用的密碼編譯雜湊演算法名稱。
傳回
X.509 憑證雜湊值的十六進位字串表示。
例外狀況
hashAlgorithm
.Name 是 null
或空字串。
hashAlgorithm
不是已知的雜湊演算法。