次の方法で共有


X509Certificate.GetPublicKey メソッド

X.509v3 証明書の公開キーを返します。

Public Overridable Function GetPublicKey() As Byte()
[C#]
public virtual byte[] GetPublicKey();
[C++]
public: virtual unsigned char GetPublicKey()  __gc[];
[JScript]
public function GetPublicKey() : 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.GetPublicKey()
      
      ' Display the value to the console.
      Dim b As Byte
      For Each b In  results
         Console.Write(b)
      Next b
   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.GetPublicKey();
       
        // Display the value to the console.
        foreach(byte b in results)
        {
            Console.Write(b);
        }
  
    }

}

[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->GetPublicKey();

    // Display the value to the console.
    System::Collections::IEnumerator* enum0 = results->GetEnumerator();
    while (enum0->MoveNext())
    {
        Byte b = *__try_cast<Byte*>(enum0->Current);
        Console::Write(b);
    }

}

[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 名前空間