Lines Matching refs:cert
152 * certain cert information is cached. So this is the point where the
162 /* attempt to compute cert hash */
184 int ossl_x509_add_cert_new(STACK_OF(X509) **p_sk, X509 *cert, int flags)
190 return X509_add_cert(*p_sk, cert, flags);
193 int X509_add_cert(STACK_OF(X509) *sk, X509 *cert, int flags)
207 if (X509_cmp(sk_X509_value(sk, i), cert) == 0)
212 int ret = X509_self_signed(cert, 0);
217 if (!sk_X509_insert(sk, cert,
223 (void)X509_up_ref(cert);
521 /* Invalid signature or LOS errors are for previous cert */