Lines Matching refs:pkeys

372  *   pkeys    - Points to address of a stack of private keys to return.
443 * pkeys - Points to address of a stack of private keys to return.
520 * If all certs are removed from 'certs' and/or 'pkeys', it will be the
624 * pkeys - Points to stack of private keys.
637 sunw_PKCS12_create(const char *pass, STACK_OF(EVP_PKEY) *pkeys,
783 if (pkeys != NULL && sk_EVP_PKEY_num(pkeys) > 0) {
791 for (i = 0; i < sk_EVP_PKEY_num(pkeys); i++) {
793 pkey = sk_EVP_PKEY_value(pkeys, i);
1163 * Look for a keyid in a stack of certs. if 'certs' is NULL and 'pkeys' is
1171 * pkeys - Points to a stack of private keys which match the certs.
1191 sunw_find_localkeyid(char *keyid_str, int len, STACK_OF(EVP_PKEY) *pkeys,
1201 (pkeys == NULL || certs == NULL) ||
1202 (pkeys != NULL && matching_pkey == NULL) ||
1220 retval = find_attr(NID_localKeyID, cmpstr, pkeys, &tmp_pkey, certs,
1240 * Look for a friendlyname in a stack of certs. if 'certs' is NULL and 'pkeys'
1247 * pkeys - Points to a stack of private keys which match the certs.
1263 sunw_find_fname(char *fname, STACK_OF(EVP_PKEY) *pkeys, STACK_OF(X509) *certs,
1273 (pkeys == NULL && certs == NULL) ||
1274 (pkeys != NULL && matching_pkey == NULL) ||
1293 retval = find_attr(NID_friendlyName, cmpstr, pkeys, &tmp_pkey, certs,
2033 STACK_OF(EVP_PKEY) **pkeys, STACK_OF(X509) **certs)
2148 retval = set_results(pkeys, &work_kl, certs, &work_cl, NULL, NULL,
2670 * lists of certs and their matching pkeys are in the same
2710 * pkeys - Points to stack of pkeys
2711 * work_kl - Points to working stack of pkeys
2716 * xtrakeys - Points to stack of unmatcned pkeys
2717 * work_xl - Points to working stack of unmatcned pkeys
2739 set_results(STACK_OF(EVP_PKEY) **pkeys, STACK_OF(EVP_PKEY) **work_kl,
2746 if (pkeys != NULL && work_kl != NULL && *work_kl != NULL &&
2748 if (*pkeys == NULL) {
2749 *pkeys = *work_kl;
2752 if (sunw_append_keys(*pkeys, *work_kl) < 0) {