Lines Matching defs:certs
149 static int cert_select_simple(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
151 static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
193 int (*client_cert_select) (ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
1443 CAPI_trace(ctx, "Listing certs for store %s\n", storename);
1720 STACK_OF(X509) *certs = NULL;
1767 if (!certs)
1768 certs = sk_X509_new_null();
1770 sk_X509_push(certs, x);
1781 if (!certs)
1786 client_cert_idx = ctx->client_cert_select(e, ssl, certs);
1790 for (i = 0; i < sk_X509_num(certs); i++) {
1791 x = sk_X509_value(certs, i);
1801 sk_X509_free(certs);
1818 static int cert_select_simple(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs)
1845 static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs)
1854 if (sk_X509_num(certs) == 1)
1866 for (i = 0; i < sk_X509_num(certs); i++) {
1867 x = sk_X509_value(certs, i);
1889 for (i = 0; i < sk_X509_num(certs); i++) {
1890 x = sk_X509_value(certs, i);