CSSM_TP_STOP_ON

This enumerated list defines the conditions controlling termination of the verification process by the TP module when a set of policies/conditions must be tested.

typedef enum cssm_tp_stop_on {
    CSSM_TP_STOP_ON_POLICY = 0,      /* use the pre-defined stopping criteria */
    CSSM_TP_STOP_ON_NONE = 1,        /* evaluate all condition whether T or F */
    CSSM_TP_STOP_ON_FIRST_PASS = 2,  /* stop evaluation at first TRUE */
    CSSM_TP_STOP_ON_FIRST_FAIL = 3   /* stop evaluation at first FALSE */
} CSSM_TP_STOP_ON;