HomeSort by: relevance | last modified time | path
    Searched defs:vfy (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/apps/lib/
s_cb.c 1400 X509_STORE *vfy = NULL, *ch = NULL; local
1404 vfy = X509_STORE_new();
1405 if (vfy == NULL)
1407 if (vfyCAfile != NULL && !X509_STORE_load_file(vfy, vfyCAfile))
1409 if (vfyCApath != NULL && !X509_STORE_load_path(vfy, vfyCApath))
1411 if (vfyCAstore != NULL && !X509_STORE_load_store(vfy, vfyCAstore))
1413 add_crls_store(vfy, crls);
1414 if (SSL_CTX_set1_verify_cert_store(ctx, vfy) == 0)
1417 store_setup_crl_download(vfy);
1434 X509_STORE_free(vfy);
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/lib/
s_cb.c 1328 X509_STORE *vfy = NULL, *ch = NULL; local
1332 vfy = X509_STORE_new();
1333 if (vfy == NULL)
1335 if (vfyCAfile != NULL && !X509_STORE_load_file(vfy, vfyCAfile))
1337 if (vfyCApath != NULL && !X509_STORE_load_path(vfy, vfyCApath))
1339 if (vfyCAstore != NULL && !X509_STORE_load_store(vfy, vfyCAstore))
1341 add_crls_store(vfy, crls);
1342 if (SSL_CTX_set1_verify_cert_store(ctx, vfy) == 0)
1345 store_setup_crl_download(vfy);
1362 X509_STORE_free(vfy);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_cb.c 1295 X509_STORE *vfy = NULL, *ch = NULL; local
1298 vfy = X509_STORE_new();
1299 if (vfy == NULL)
1301 if (!X509_STORE_load_locations(vfy, vfyCAfile, vfyCApath))
1303 add_crls_store(vfy, crls);
1304 SSL_CTX_set1_verify_cert_store(ctx, vfy);
1306 store_setup_crl_download(vfy);
1318 X509_STORE_free(vfy);

Completed in 30 milliseconds