X509Certificate.GetCertHash メソッド

定義

X509Certificate オブジェクトのハッシュ値を返します。

オーバーロード

名前 説明
GetCertHash()

X.509v3 証明書のハッシュ値をバイト配列として返します。

GetCertHash(HashAlgorithmName)

指定した暗号化ハッシュ アルゴリズムを使用して計算される X.509v3 証明書のハッシュ値を返します。

GetCertHash()

ソース:
X509Certificate.cs
ソース:
X509Certificate.cs
ソース:
X509Certificate.cs
ソース:
X509Certificate.cs
ソース:
X509Certificate.cs

X.509v3 証明書のハッシュ値をバイト配列として返します。

public:
 virtual cli::array <System::Byte> ^ GetCertHash();
public virtual byte[] GetCertHash();
abstract member GetCertHash : unit -> byte[]
override this.GetCertHash : unit -> byte[]
Public Overridable Function GetCertHash () As Byte()

返品

Byte[]

X.509 証明書のハッシュ値。

次の例では、 GetCertHash メソッドを使用して、バイト配列に X.509 証明書のハッシュ値を入力します。


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();
    }
}
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

適用対象

GetCertHash(HashAlgorithmName)

ソース:
X509Certificate.cs
ソース:
X509Certificate.cs
ソース:
X509Certificate.cs
ソース:
X509Certificate.cs
ソース:
X509Certificate.cs

指定した暗号化ハッシュ アルゴリズムを使用して計算される X.509v3 証明書のハッシュ値を返します。

public:
 virtual cli::array <System::Byte> ^ GetCertHash(System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual byte[] GetCertHash(System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member GetCertHash : System.Security.Cryptography.HashAlgorithmName -> byte[]
override this.GetCertHash : System.Security.Cryptography.HashAlgorithmName -> byte[]
Public Overridable Function GetCertHash (hashAlgorithm As HashAlgorithmName) As Byte()

パラメーター

hashAlgorithm
HashAlgorithmName

使用する暗号化ハッシュ アルゴリズムの名前。

返品

Byte[]

X.509 証明書のハッシュ値を含むバイト配列。

例外

hashAlgorithm.Namenull または空の文字列です。

hashAlgorithm は既知のハッシュ アルゴリズムではありません。

こちらもご覧ください

適用対象