Lines Matching refs:cert_store
3223 ret->cert_store = X509_STORE_new(); in SSL_CTX_new_ex()
3224 if (ret->cert_store == NULL) in SSL_CTX_new_ex()
3421 X509_STORE_free(a->cert_store); in SSL_CTX_free()
4320 return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx, in SSL_CTX_set_default_verify_paths()
4328 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir()); in SSL_CTX_set_default_verify_dir()
4346 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file()); in SSL_CTX_set_default_verify_file()
4365 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store()); in SSL_CTX_set_default_verify_store()
4381 return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx, in SSL_CTX_load_verify_file()
4387 return X509_STORE_load_path(ctx->cert_store, CApath); in SSL_CTX_load_verify_dir()
4392 return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx, in SSL_CTX_load_verify_store()
4499 return ctx->cert_store; in SSL_CTX_get_cert_store()
4504 X509_STORE_free(ctx->cert_store); in SSL_CTX_set_cert_store()
4505 ctx->cert_store = store; in SSL_CTX_set_cert_store()