ホーム › Security.Cryptography.Certificates › Pkcs10AllowedSignatureTypes
Pkcs10AllowedSignatureTypes
列挙型メンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| AllowedKeySignature | 1 | 0x1 |
| AllowedNullSignature | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2enum Pkcs10AllowedSignatureTypes : int {
AllowedKeySignature = 1,
AllowedNullSignature = 2,
}#define global AllowedKeySignature 0x1
#define global AllowedNullSignature 0x2