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

X509RequestType

列挙型
基底型i4

メンバー 5

名前10進16進
TypeAny00x0
TypePkcs1010x1
TypePkcs720x2
TypeCmc30x3
TypeCertificate40x4

各言語での定義

列挙メンバーの定義。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