X509Certificate.GetKeyAlgorithmParametersString メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > X509Certificate.GetKeyAlgorithmParametersString メソッドの意味・解説 

X509Certificate.GetKeyAlgorithmParametersString メソッド

X.509v3 証明書キー アルゴリズム パラメータ返します

名前空間: System.Security.Cryptography.X509Certificates
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Overridable Function
 GetKeyAlgorithmParametersString As String
Dim instance As X509Certificate
Dim returnValue As String

returnValue = instance.GetKeyAlgorithmParametersString
public virtual string GetKeyAlgorithmParametersString
 ()
public:
virtual String^ GetKeyAlgorithmParametersString ()
public String GetKeyAlgorithmParametersString ()
public function GetKeyAlgorithmParametersString
 () : String

戻り値
X.509 証明書16 進数文字列形式キー アルゴリズム パラメータ

使用例使用例
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 String
 = cert.GetKeyAlgorithmParametersString()
      
      ' Display the value to the console.
      Console.WriteLine(results)
   End Sub 
End Class 

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.GetKeyAlgorithmParametersString();
       
        // Display the value to the console.
        Console.WriteLine(results);
  
    }

}
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->GetKeyAlgorithmParametersString();
   
   // Display the value to the console.
   Console::WriteLine( results );
}

import System.*;
import System.Security.Cryptography.X509Certificates.*;

public class X509
{
    public static void main(String[]
 args)
    {
        // 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.GetKeyAlgorithmParametersString();

        // Display the value to the console.
        Console.WriteLine(results);
    } //main 
} //X509
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
X509Certificate クラス
X509Certificate メンバ
System.Security.Cryptography.X509Certificates 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からX509Certificate.GetKeyAlgorithmParametersString メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からX509Certificate.GetKeyAlgorithmParametersString メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からX509Certificate.GetKeyAlgorithmParametersString メソッド を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

X509Certificate.GetKeyAlgorithmParametersString メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



X509Certificate.GetKeyAlgorithmParametersString メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS