This contains information about the storage mechanism that will be used to store and remove the identity context. See eServer Implementation Notes for details on platform-specific details.
When the storage mechanism is EIM the following authorities and locks apply.
The access groups whose members have authority to the mapping lookup data for this API follow:
The credential information for the target identity is considered security sensitive data. Access to this data is more strictly controlled. The access groups whose members have authority to the credential information follow:
Note that the EIM Credential Data access group does not have access to the mapping lookup data. If a user is a member of the EIM Credential Data access group, then the user must also be a member of one of the access groups that has access to the mapping lookup data.
The layout for ictxStorageMech follows:
typedef struct ictxStorageMech { enum ictxStorageMechFormat format; union { ictxStorageMechFormat0_t format0; } storageMech; } ictxStorageMech_t;
enum ictxStorageMechFormat { ICTX_STORAGE_MECH_EIM_0 };
When format is ICTX_STORAGE_MECH_EIM_0 (0), the storageMech field
must contain an ictxStorageMechFormat0_t structure.
typedef struct ictxStorageMechFormat0 { EimHandle * eimHandle; /* Eim handle */ } ictxStorageMechFormat0_t;
Top | Security APIs | APIs by category |