ホーム › Security.Cryptography › SECRET_TYPE
SECRET_TYPE
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| AlphaNumericPinType | 0 | 0x0 |
| ExternalPinType | 1 | 0x1 |
| ChallengeResponsePinType | 2 | 0x2 |
| EmptyPinType | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SECRET_TYPE : int {
AlphaNumericPinType = 0,
ExternalPinType = 1,
ChallengeResponsePinType = 2,
EmptyPinType = 3
} SECRET_TYPE;public enum SECRET_TYPE : int
{
AlphaNumericPinType = 0,
ExternalPinType = 1,
ChallengeResponsePinType = 2,
EmptyPinType = 3,
}Public Enum SECRET_TYPE As Integer
AlphaNumericPinType = 0
ExternalPinType = 1
ChallengeResponsePinType = 2
EmptyPinType = 3
End Enumimport enum
class SECRET_TYPE(enum.IntEnum):
AlphaNumericPinType = 0
ExternalPinType = 1
ChallengeResponsePinType = 2
EmptyPinType = 3// SECRET_TYPE
pub const AlphaNumericPinType: i32 = 0;
pub const ExternalPinType: i32 = 1;
pub const ChallengeResponsePinType: i32 = 2;
pub const EmptyPinType: i32 = 3;// SECRET_TYPE
const (
AlphaNumericPinType int32 = 0
ExternalPinType int32 = 1
ChallengeResponsePinType int32 = 2
EmptyPinType int32 = 3
)const
AlphaNumericPinType = 0;
ExternalPinType = 1;
ChallengeResponsePinType = 2;
EmptyPinType = 3;// SECRET_TYPE
pub const AlphaNumericPinType: i32 = 0;
pub const ExternalPinType: i32 = 1;
pub const ChallengeResponsePinType: i32 = 2;
pub const EmptyPinType: i32 = 3;const
AlphaNumericPinType* = 0
ExternalPinType* = 1
ChallengeResponsePinType* = 2
EmptyPinType* = 3enum SECRET_TYPE : int {
AlphaNumericPinType = 0,
ExternalPinType = 1,
ChallengeResponsePinType = 2,
EmptyPinType = 3,
}#define global AlphaNumericPinType 0x0
#define global ExternalPinType 0x1
#define global ChallengeResponsePinType 0x2
#define global EmptyPinType 0x3