X509Certificate.GetCertHash メソッド
X.509v3 証明書のハッシュ値をバイト配列として返します。
Public Overridable Function GetCertHash() As Byte()
[C#]
public virtual byte[] GetCertHash();
[C++]
public: virtual unsigned char GetCertHash() __gc[];
[JScript]
public function GetCertHash() : Byte[];
戻り値
X.509 証明書のハッシュ値。
使用例
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 Byte() = cert.GetCertHash()
End Sub
End Class
[C#]
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.
byte[] results = cert.GetCertHash();
}
}
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
// The path to the certificate.
String* Certificate = S"Certificate.cer";
// Load the certificate into an X509Certificate object.
X509Certificate* cert = X509Certificate::CreateFromCertFile(Certificate);
// Get the value.
Byte results[] = cert->GetCertHash();
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
X509Certificate クラス | X509Certificate メンバ | System.Security.Cryptography.X509Certificates 名前空間