Identificadores SSPI

O SSPI usa os seguintes tipos de identificador e ponteiro para esses identificadores:

  • SecHandle e PSecHandle
  • CredHandle e PCredHandle
  • CtxtHandle e PCtxtHandle

Esses tipos de identificador e ponteiros para esses tipos de identificador são definidos da seguinte maneira.

typedef struct _SecHandle {
  ULONG_PTR       dwLower;
  ULONG_PTR       dwUpper;
} SecHandle, * PSecHandle;

typedef SecHandle    CredHandle;
typedef PSecHandle   PCredHandle;

typedef SecHandle    CtxtHandle;
typedef PSecHandle   PCtxtHandle;