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

Pkcs10AllowedSignatureTypes

列挙型
基底型i4

メンバー 2

名前10進16進
AllowedKeySignature10x1
AllowedNullSignature20x2

各言語での定義

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

typedef enum Pkcs10AllowedSignatureTypes : int {
    AllowedKeySignature = 1,
    AllowedNullSignature = 2
} Pkcs10AllowedSignatureTypes;
public enum Pkcs10AllowedSignatureTypes : int
{
    AllowedKeySignature = 1,
    AllowedNullSignature = 2,
}
Public Enum Pkcs10AllowedSignatureTypes As Integer
    AllowedKeySignature = 1
    AllowedNullSignature = 2
End Enum
import enum

class Pkcs10AllowedSignatureTypes(enum.IntEnum):
    AllowedKeySignature = 1
    AllowedNullSignature = 2
// Pkcs10AllowedSignatureTypes
pub const AllowedKeySignature: i32 = 1;
pub const AllowedNullSignature: i32 = 2;
// Pkcs10AllowedSignatureTypes
const (
	AllowedKeySignature int32 = 1
	AllowedNullSignature int32 = 2
)
const
  AllowedKeySignature = 1;
  AllowedNullSignature = 2;
// Pkcs10AllowedSignatureTypes
pub const AllowedKeySignature: i32 = 1;
pub const AllowedNullSignature: i32 = 2;
const
  AllowedKeySignature* = 1
  AllowedNullSignature* = 2
enum Pkcs10AllowedSignatureTypes : int {
    AllowedKeySignature = 1,
    AllowedNullSignature = 2,
}
#define global AllowedKeySignature  0x1
#define global AllowedNullSignature 0x2