Home | History | Annotate | Download | only in apps

Lines Matching refs:cert

743 		EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
779 ret = PKCS12_parse(p12, pass, pkey, cert, ca);
790 BIO *cert;
792 if ((cert=BIO_new(BIO_s_file())) == NULL)
805 BIO_set_fp(cert,stdin,BIO_NOCLOSE);
809 if (BIO_read_filename(cert,file) <= 0)
819 x=d2i_X509_bio(cert,NULL);
823 nx=ASN1_item_d2i_bio(ASN1_ITEM_rptr(NETSCAPE_X509),cert,NULL);
834 x=nx->cert;
835 nx->cert = NULL;
839 x=PEM_read_bio_X509_AUX(cert,NULL,
843 if (!load_pkcs12(err, cert,cert_descrip, NULL, NULL,
858 if (cert != NULL) BIO_free(cert);