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