Win32 API 日本語リファレンス
ホームSecurity.Cryptography.Certificates › X509RequestType

X509RequestType

列挙型
基底型i4

メンバー 5

名前10進16進説明
TypeAny00x0種類が定義されていません。
TypePkcs1010x1PKCS #10 要求です。詳細については、IX509CertificateRequestPkcs10 インターフェイスを参照してください。
TypePkcs720x2IX509CertificateRequestPkcs7 インターフェイスで表される PKCS #7 要求です。
TypeCmc30x3Certificate Management over CMS (CMC) 要求です。詳細については、IX509CertificateRequestCmc インターフェイスを参照してください。
TypeCertificate40x4自己署名証明書です。詳細については、IX509CertificateRequestCertificate インターフェイスを参照してください。

公式ドキュメント

X509RequestType 列挙型は、証明書要求の種類を指定します。この列挙型は、IX509CertificateRequest インターフェイスの Type プロパティから返されます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum X509RequestType : int {
    TypeAny = 0,
    TypePkcs10 = 1,
    TypePkcs7 = 2,
    TypeCmc = 3,
    TypeCertificate = 4
} X509RequestType;
public enum X509RequestType : int
{
    TypeAny = 0,
    TypePkcs10 = 1,
    TypePkcs7 = 2,
    TypeCmc = 3,
    TypeCertificate = 4,
}
Public Enum X509RequestType As Integer
    TypeAny = 0
    TypePkcs10 = 1
    TypePkcs7 = 2
    TypeCmc = 3
    TypeCertificate = 4
End Enum
import enum

class X509RequestType(enum.IntEnum):
    TypeAny = 0
    TypePkcs10 = 1
    TypePkcs7 = 2
    TypeCmc = 3
    TypeCertificate = 4
// X509RequestType
pub const TypeAny: i32 = 0;
pub const TypePkcs10: i32 = 1;
pub const TypePkcs7: i32 = 2;
pub const TypeCmc: i32 = 3;
pub const TypeCertificate: i32 = 4;
// X509RequestType
const (
	TypeAny int32 = 0
	TypePkcs10 int32 = 1
	TypePkcs7 int32 = 2
	TypeCmc int32 = 3
	TypeCertificate int32 = 4
)
const
  TypeAny = 0;
  TypePkcs10 = 1;
  TypePkcs7 = 2;
  TypeCmc = 3;
  TypeCertificate = 4;
// X509RequestType
pub const TypeAny: i32 = 0;
pub const TypePkcs10: i32 = 1;
pub const TypePkcs7: i32 = 2;
pub const TypeCmc: i32 = 3;
pub const TypeCertificate: i32 = 4;
const
  TypeAny* = 0
  TypePkcs10* = 1
  TypePkcs7* = 2
  TypeCmc* = 3
  TypeCertificate* = 4
enum X509RequestType : int {
    TypeAny = 0,
    TypePkcs10 = 1,
    TypePkcs7 = 2,
    TypeCmc = 3,
    TypeCertificate = 4,
}
#define global TypeAny         0x0
#define global TypePkcs10      0x1
#define global TypePkcs7       0x2
#define global TypeCmc         0x3
#define global TypeCertificate 0x4