Lines Matching defs:signer
115 X509 *signer = NULL, *tmp;
121 * Test a response with no certs at all; get the signer from the
128 || !TEST_true(get_cert_and_key(&signer, &key))
129 || !TEST_true(sk_X509_push(extra_certs, signer))
130 || !TEST_true(OCSP_basic_sign(bs, signer, key, EVP_sha1(),
134 || !TEST_int_eq(X509_cmp(tmp, signer), 0))
138 /* Do it again but include the signer cert */
142 || !TEST_true(OCSP_basic_sign(bs, signer, key, EVP_sha1(),
146 || !TEST_int_eq(X509_cmp(tmp, signer), 0))
152 X509_free(signer);