Home | History | Annotate | Download | only in ssl

Lines Matching refs:pkeys

175 	ret->key= &(ret->pkeys[SSL_PKEY_RSA_ENC]);
194 ret->key = &ret->pkeys[cert->key - &cert->pkeys[0]];
195 /* or ret->key = ret->pkeys + (cert->key - cert->pkeys),
261 if (cert->pkeys[i].x509 != NULL)
263 ret->pkeys[i].x509 = cert->pkeys[i].x509;
264 CRYPTO_add(&ret->pkeys[i].x509->references, 1,
268 if (cert->pkeys[i].privatekey != NULL)
270 ret->pkeys[i].privatekey = cert->pkeys[i].privatekey;
271 CRYPTO_add(&ret->pkeys[i].privatekey->references, 1,
330 if (ret->pkeys[i].x509 != NULL)
331 X509_free(ret->pkeys[i].x509);
332 if (ret->pkeys[i].privatekey != NULL)
333 EVP_PKEY_free(ret->pkeys[i].privatekey);
372 if (c->pkeys[i].x509 != NULL)
373 X509_free(c->pkeys[i].x509);
374 if (c->pkeys[i].privatekey != NULL)
375 EVP_PKEY_free(c->pkeys[i].privatekey);
377 if (c->pkeys[i].publickey != NULL)
378 EVP_PKEY_free(c->pkeys[i].publickey);