Win32 API 日本語リファレンス
ホームSecurity.Authentication.Identity › KERB_TICKET_FLAGS

KERB_TICKET_FLAGS

列挙型フラグ
基底型u4

メンバー 14

名前10進16進
KERB_TICKET_FLAGS_forwardable10737418240x40000000
KERB_TICKET_FLAGS_forwarded5368709120x20000000
KERB_TICKET_FLAGS_hw_authent10485760x100000
KERB_TICKET_FLAGS_initial41943040x400000
KERB_TICKET_FLAGS_invalid167772160x1000000
KERB_TICKET_FLAGS_may_postdate671088640x4000000
KERB_TICKET_FLAGS_ok_as_delegate2621440x40000
KERB_TICKET_FLAGS_postdated335544320x2000000
KERB_TICKET_FLAGS_pre_authent20971520x200000
KERB_TICKET_FLAGS_proxiable2684354560x10000000
KERB_TICKET_FLAGS_proxy1342177280x8000000
KERB_TICKET_FLAGS_renewable83886080x800000
KERB_TICKET_FLAGS_reserved21474836480x80000000
KERB_TICKET_FLAGS_reserved110x1

各言語での定義

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

typedef enum KERB_TICKET_FLAGS : unsigned int {
    KERB_TICKET_FLAGS_forwardable = 1073741824,
    KERB_TICKET_FLAGS_forwarded = 536870912,
    KERB_TICKET_FLAGS_hw_authent = 1048576,
    KERB_TICKET_FLAGS_initial = 4194304,
    KERB_TICKET_FLAGS_invalid = 16777216,
    KERB_TICKET_FLAGS_may_postdate = 67108864,
    KERB_TICKET_FLAGS_ok_as_delegate = 262144,
    KERB_TICKET_FLAGS_postdated = 33554432,
    KERB_TICKET_FLAGS_pre_authent = 2097152,
    KERB_TICKET_FLAGS_proxiable = 268435456,
    KERB_TICKET_FLAGS_proxy = 134217728,
    KERB_TICKET_FLAGS_renewable = 8388608,
    KERB_TICKET_FLAGS_reserved = 2147483648,
    KERB_TICKET_FLAGS_reserved1 = 1
} KERB_TICKET_FLAGS;
[Flags]
public enum KERB_TICKET_FLAGS : uint
{
    KERB_TICKET_FLAGS_forwardable = 1073741824,
    KERB_TICKET_FLAGS_forwarded = 536870912,
    KERB_TICKET_FLAGS_hw_authent = 1048576,
    KERB_TICKET_FLAGS_initial = 4194304,
    KERB_TICKET_FLAGS_invalid = 16777216,
    KERB_TICKET_FLAGS_may_postdate = 67108864,
    KERB_TICKET_FLAGS_ok_as_delegate = 262144,
    KERB_TICKET_FLAGS_postdated = 33554432,
    KERB_TICKET_FLAGS_pre_authent = 2097152,
    KERB_TICKET_FLAGS_proxiable = 268435456,
    KERB_TICKET_FLAGS_proxy = 134217728,
    KERB_TICKET_FLAGS_renewable = 8388608,
    KERB_TICKET_FLAGS_reserved = 2147483648,
    KERB_TICKET_FLAGS_reserved1 = 1,
}
<Flags>
Public Enum KERB_TICKET_FLAGS As UInteger
    KERB_TICKET_FLAGS_forwardable = 1073741824
    KERB_TICKET_FLAGS_forwarded = 536870912
    KERB_TICKET_FLAGS_hw_authent = 1048576
    KERB_TICKET_FLAGS_initial = 4194304
    KERB_TICKET_FLAGS_invalid = 16777216
    KERB_TICKET_FLAGS_may_postdate = 67108864
    KERB_TICKET_FLAGS_ok_as_delegate = 262144
    KERB_TICKET_FLAGS_postdated = 33554432
    KERB_TICKET_FLAGS_pre_authent = 2097152
    KERB_TICKET_FLAGS_proxiable = 268435456
    KERB_TICKET_FLAGS_proxy = 134217728
    KERB_TICKET_FLAGS_renewable = 8388608
    KERB_TICKET_FLAGS_reserved = 2147483648
    KERB_TICKET_FLAGS_reserved1 = 1
End Enum
import enum

class KERB_TICKET_FLAGS(enum.IntFlag):
    KERB_TICKET_FLAGS_forwardable = 1073741824
    KERB_TICKET_FLAGS_forwarded = 536870912
    KERB_TICKET_FLAGS_hw_authent = 1048576
    KERB_TICKET_FLAGS_initial = 4194304
    KERB_TICKET_FLAGS_invalid = 16777216
    KERB_TICKET_FLAGS_may_postdate = 67108864
    KERB_TICKET_FLAGS_ok_as_delegate = 262144
    KERB_TICKET_FLAGS_postdated = 33554432
    KERB_TICKET_FLAGS_pre_authent = 2097152
    KERB_TICKET_FLAGS_proxiable = 268435456
    KERB_TICKET_FLAGS_proxy = 134217728
    KERB_TICKET_FLAGS_renewable = 8388608
    KERB_TICKET_FLAGS_reserved = 2147483648
    KERB_TICKET_FLAGS_reserved1 = 1
// KERB_TICKET_FLAGS (flags)
pub const KERB_TICKET_FLAGS_forwardable: u32 = 1073741824;
pub const KERB_TICKET_FLAGS_forwarded: u32 = 536870912;
pub const KERB_TICKET_FLAGS_hw_authent: u32 = 1048576;
pub const KERB_TICKET_FLAGS_initial: u32 = 4194304;
pub const KERB_TICKET_FLAGS_invalid: u32 = 16777216;
pub const KERB_TICKET_FLAGS_may_postdate: u32 = 67108864;
pub const KERB_TICKET_FLAGS_ok_as_delegate: u32 = 262144;
pub const KERB_TICKET_FLAGS_postdated: u32 = 33554432;
pub const KERB_TICKET_FLAGS_pre_authent: u32 = 2097152;
pub const KERB_TICKET_FLAGS_proxiable: u32 = 268435456;
pub const KERB_TICKET_FLAGS_proxy: u32 = 134217728;
pub const KERB_TICKET_FLAGS_renewable: u32 = 8388608;
pub const KERB_TICKET_FLAGS_reserved: u32 = 2147483648;
pub const KERB_TICKET_FLAGS_reserved1: u32 = 1;
// KERB_TICKET_FLAGS
const (
	KERB_TICKET_FLAGS_forwardable uint32 = 1073741824
	KERB_TICKET_FLAGS_forwarded uint32 = 536870912
	KERB_TICKET_FLAGS_hw_authent uint32 = 1048576
	KERB_TICKET_FLAGS_initial uint32 = 4194304
	KERB_TICKET_FLAGS_invalid uint32 = 16777216
	KERB_TICKET_FLAGS_may_postdate uint32 = 67108864
	KERB_TICKET_FLAGS_ok_as_delegate uint32 = 262144
	KERB_TICKET_FLAGS_postdated uint32 = 33554432
	KERB_TICKET_FLAGS_pre_authent uint32 = 2097152
	KERB_TICKET_FLAGS_proxiable uint32 = 268435456
	KERB_TICKET_FLAGS_proxy uint32 = 134217728
	KERB_TICKET_FLAGS_renewable uint32 = 8388608
	KERB_TICKET_FLAGS_reserved uint32 = 2147483648
	KERB_TICKET_FLAGS_reserved1 uint32 = 1
)
const
  KERB_TICKET_FLAGS_forwardable = 1073741824;
  KERB_TICKET_FLAGS_forwarded = 536870912;
  KERB_TICKET_FLAGS_hw_authent = 1048576;
  KERB_TICKET_FLAGS_initial = 4194304;
  KERB_TICKET_FLAGS_invalid = 16777216;
  KERB_TICKET_FLAGS_may_postdate = 67108864;
  KERB_TICKET_FLAGS_ok_as_delegate = 262144;
  KERB_TICKET_FLAGS_postdated = 33554432;
  KERB_TICKET_FLAGS_pre_authent = 2097152;
  KERB_TICKET_FLAGS_proxiable = 268435456;
  KERB_TICKET_FLAGS_proxy = 134217728;
  KERB_TICKET_FLAGS_renewable = 8388608;
  KERB_TICKET_FLAGS_reserved = 2147483648;
  KERB_TICKET_FLAGS_reserved1 = 1;
// KERB_TICKET_FLAGS
pub const KERB_TICKET_FLAGS_forwardable: u32 = 1073741824;
pub const KERB_TICKET_FLAGS_forwarded: u32 = 536870912;
pub const KERB_TICKET_FLAGS_hw_authent: u32 = 1048576;
pub const KERB_TICKET_FLAGS_initial: u32 = 4194304;
pub const KERB_TICKET_FLAGS_invalid: u32 = 16777216;
pub const KERB_TICKET_FLAGS_may_postdate: u32 = 67108864;
pub const KERB_TICKET_FLAGS_ok_as_delegate: u32 = 262144;
pub const KERB_TICKET_FLAGS_postdated: u32 = 33554432;
pub const KERB_TICKET_FLAGS_pre_authent: u32 = 2097152;
pub const KERB_TICKET_FLAGS_proxiable: u32 = 268435456;
pub const KERB_TICKET_FLAGS_proxy: u32 = 134217728;
pub const KERB_TICKET_FLAGS_renewable: u32 = 8388608;
pub const KERB_TICKET_FLAGS_reserved: u32 = 2147483648;
pub const KERB_TICKET_FLAGS_reserved1: u32 = 1;
const
  KERB_TICKET_FLAGS_forwardable* = 1073741824
  KERB_TICKET_FLAGS_forwarded* = 536870912
  KERB_TICKET_FLAGS_hw_authent* = 1048576
  KERB_TICKET_FLAGS_initial* = 4194304
  KERB_TICKET_FLAGS_invalid* = 16777216
  KERB_TICKET_FLAGS_may_postdate* = 67108864
  KERB_TICKET_FLAGS_ok_as_delegate* = 262144
  KERB_TICKET_FLAGS_postdated* = 33554432
  KERB_TICKET_FLAGS_pre_authent* = 2097152
  KERB_TICKET_FLAGS_proxiable* = 268435456
  KERB_TICKET_FLAGS_proxy* = 134217728
  KERB_TICKET_FLAGS_renewable* = 8388608
  KERB_TICKET_FLAGS_reserved* = 2147483648
  KERB_TICKET_FLAGS_reserved1* = 1
enum KERB_TICKET_FLAGS : uint {
    KERB_TICKET_FLAGS_forwardable = 1073741824,
    KERB_TICKET_FLAGS_forwarded = 536870912,
    KERB_TICKET_FLAGS_hw_authent = 1048576,
    KERB_TICKET_FLAGS_initial = 4194304,
    KERB_TICKET_FLAGS_invalid = 16777216,
    KERB_TICKET_FLAGS_may_postdate = 67108864,
    KERB_TICKET_FLAGS_ok_as_delegate = 262144,
    KERB_TICKET_FLAGS_postdated = 33554432,
    KERB_TICKET_FLAGS_pre_authent = 2097152,
    KERB_TICKET_FLAGS_proxiable = 268435456,
    KERB_TICKET_FLAGS_proxy = 134217728,
    KERB_TICKET_FLAGS_renewable = 8388608,
    KERB_TICKET_FLAGS_reserved = 2147483648,
    KERB_TICKET_FLAGS_reserved1 = 1,
}
#define global KERB_TICKET_FLAGS_forwardable    0x40000000
#define global KERB_TICKET_FLAGS_forwarded      0x20000000
#define global KERB_TICKET_FLAGS_hw_authent     0x100000
#define global KERB_TICKET_FLAGS_initial        0x400000
#define global KERB_TICKET_FLAGS_invalid        0x1000000
#define global KERB_TICKET_FLAGS_may_postdate   0x4000000
#define global KERB_TICKET_FLAGS_ok_as_delegate 0x40000
#define global KERB_TICKET_FLAGS_postdated      0x2000000
#define global KERB_TICKET_FLAGS_pre_authent    0x200000
#define global KERB_TICKET_FLAGS_proxiable      0x10000000
#define global KERB_TICKET_FLAGS_proxy          0x8000000
#define global KERB_TICKET_FLAGS_renewable      0x800000
#define global KERB_TICKET_FLAGS_reserved       0x80000000
#define global KERB_TICKET_FLAGS_reserved1      0x1
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。