Lines Matching defs:certs
187 * set_results - Given two pointers to stacks of private keys, certs or CA
188 * CA certs, either copy the second stack to the first, or append the
194 * certs - Points to stack of certs
195 * work_cl - Points to working stack of certs
196 * cacerts - Points to stack of CA certs
197 * work_ca - Points to working stack of CA certs
202 * of keys or certs. The second of the pair points at a 'working stack'
222 STACK_OF(X509) **certs, STACK_OF(X509) **work_cl,
240 if (certs != NULL && work_cl != NULL && *work_cl != NULL &&
242 if (*certs == NULL) {
243 *certs = *work_cl;
246 if (move_certs(*certs, *work_cl) < 0) {
294 * cl - Points to a stack of client certs with matching private keys.
298 * This function is designed to process lists of certs and private keys.
300 * for certs and for keys. For certs, only a few attributes are retained.
306 * - If there there is no stack of certs but a stack of private keys exists,
308 * of certs and no private keys, search the certs.
310 * - If there are both certs and keys, assume that the matching certs and
312 * order. Search for the name or keyid in the stack of certs. If it is
404 * lists of certs and their matching pkeys are in the same
468 * get_key_cert - Get a cert and its matching key from the stacks of certs
474 * certs below.
477 * cl - Points to a stack of client certs with matching private keys.
481 * The assumption is that the stacks of keys and certs contain key/cert pairs,
486 * A stack of certs can be passed in without a stack of private keys, and vise
581 * move_certs - Given two stacks of certs, remove the certs from
585 * dst - the stack to receive the certs from 'src'
586 * src - the stack whose certs are to be moved.
590 * >= 0 - The number of certs that were copied.