Lines Matching defs:certs
25 const STACK_OF(X509) *certs,
41 for (i = 0; i < sk_X509_num(certs); ++i) {
42 X509 *cert = sk_X509_value(certs, i);
102 STACK_OF(X509) *certs,
118 for (i = 0; i < sk_X509_num(certs); ++i) {
119 X509 *cert = sk_X509_value(certs, i);
213 * Find the cert in |certs| referenced by |cid| if not NULL, else by |cid_v2|.
214 * The cert must be the first one in |certs| if and only if |index| is 0.
215 * Return 0 on not found, -1 on error, else 1 + the position in |certs|.
218 int index, const STACK_OF(X509) *certs)
254 for (i = 0; i < sk_X509_num(certs); ++i) {
255 cert = sk_X509_value(certs, i);