This is information that is parsed from the authentication context. See eServer Implementation Notes for details on platform-specific details.
The layout for ictxParseInfo follows:
typedef struct ictxParseInfo { enum ictxParseInfoFormat format; int statusFlag; union { ictxParseInfoFormat0_t * format0; } parseInfo; } ictxParseInfo_t;
enum ictxParseInfoFormat { ICTX_PARSE_INFO_FORMAT_0 };
When format is ICTX_PARSE_INFO_FORMAT_0 (0), the parseInfo field
will contain an ictxParseInfoFormat0_t structure.
typedef struct ictxParseInfoFormat0 { ictxAuthenticationInfo_t * authData; /* Authentication data retrieved from the authentication context */ ictxManifestInfo_t ** manifestList; /* Array of pointers to manifest information. */ } ictxParseInfoFormat0_t;
Top | Security APIs | APIs by category |