Lines Matching defs:certs
64 * incert - File to read certs and keys from
74 * is returned. If no certs are found, but one or more
85 STACK_OF(X509) *certs = NULL;
107 &data, &keys, &certs) < 0) {
118 if (cert && (certs != NULL)) {
119 if (sk_X509_num(certs) != 1) {
124 tmpcert = sk_X509_value(certs, 0);
177 * incert - File to read certs and keys from
180 * certs - Location to store resulting cert if found.
182 * Returns: 0 - success, all certs placed in ''certs'
187 keystore_encoding_format_t format, char *passarg, STACK_OF(X509) **certs)
194 if (certs) *certs = NULL;
229 if (certs && tmpcerts) {
230 *certs = tmpcerts;