Home
last modified time | relevance | path

Searched refs:path (Results 26 – 50 of 158) sorted by relevance

1234567

/openssl/test/recipes/
H A D30-test_engine.t18 my @path = qw(test certs);
24 ok(run(test(["enginetest", srctop_file(@path, "root-cert.pem")])),
H A D25-test_pkcs7.t22 my @path = qw(test certs);
36 "-certfile", srctop_file(@path, $pemfile),
H A D25-test_verify.t22 my @path = qw(test certs);
26 for (@$trusted) { push(@args, "-trusted", srctop_file(@path, "$_.pem")) }
27 for (@$untrusted) { push(@args, "-untrusted", srctop_file(@path, "$_.pem")) }
28 push(@args, srctop_file(@path, "$cert.pem"));
/openssl/include/openssl/
H A Drand.h106 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes);
107 int RAND_egd(const char *path);
108 int RAND_egd_bytes(const char *path, int bytes);
H A Dhttp.h48 const char *path);
76 int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path,
90 const char *path, int use_ssl,
/openssl/.github/workflows/
H A Dfips-checksums.yml33 path: source-pristine
48 path: source
75 path: artifact/
95 path: source-pristine
104 path: source
119 path: artifact/
H A Dci.yml105 path: artifacts.tar.gz
127 path: artifacts.tar.gz
152 path: artifacts.tar.gz
174 path: artifacts.tar.gz
196 path: artifacts.tar.gz
218 path: artifacts.tar.gz
245 path: artifacts.tar.gz
271 path: artifacts.tar.gz
297 path: artifacts.tar.gz
487 path: ./source
[all …]
H A Dprovider-compatibility.yml88 ./util/wrap.pl -fips apps/openssl list -provider-path providers \
99 path: ${{ matrix.release.tgz }}
138 path: ${{ matrix.branch.dir }}
162 ./util/wrap.pl -fips apps/openssl list -provider-path providers \
183 path: ${{ matrix.branch.tgz }}
239 ./util/wrap.pl -fips apps/openssl list -provider-path providers \
H A Dprov-compat-label.yml84 ./util/wrap.pl -fips apps/openssl list -provider-path providers \
95 path: ${{ matrix.release.tgz }}
139 path: ${{ matrix.branch.dir }}
163 ./util/wrap.pl -fips apps/openssl list -provider-path providers \
180 path: ${{ matrix.branch.tgz }}
247 ./util/wrap.pl -fips apps/openssl list -provider-path providers \
/openssl/doc/man3/
H A DOSSL_HTTP_parse_url.pod53 C<[scheme://][userinfo@]host[:port][/path][?query][#fragment]> and splits it up
54 into scheme, userinfo, host, port, path, query, and fragment components.
60 The path component is also optional and defaults to C</>.
66 If I<pquery> is NULL, any given query component is handled as part of the path.
78 otherwise the first path element is interpreted as the host.
80 Calling the deprecated function OCSP_parse_url(url, host, port, path, ssl)
82 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL).
H A DOSSL_PROVIDER.pod24 const char *path);
78 OSSL_PROVIDER_set_default_search_path() specifies the default search I<path>
83 OSSL_PROVIDER_get0_default_search_path() retrieves the default search I<path>
85 If successful returns the path or empty string; the path is valid until the
97 entry point, C<OSSL_provider_init>. The I<name> can be a path
99 by OSSL_PROVIDER_get0_name() will be the path. Interpretation
101 to the configured "MODULESDIR" directory or the path set in
183 OSSL_PROVIDER_get0_default_search_path() returns a pointer to a path on success,
184 or NULL on error or if the path has not previously been set.
H A DX509_get_default_cert_file.pod21 The X509_get_default_cert_file() function returns the default path
23 the default path when it is asked to load trusted CA certificates
24 from a file and no other path is specified. If the file exists, CA certificates
30 asked to load trusted CA certificates from a directory and no other path is
H A DX509_get_extension_flags.pod37 X509_get_pathlen() retrieves the path length extension from a certificate.
150 X509_set_proxy_pathlen() sets the proxy certificate path length for the given
154 X509_get_proxy_pathlen() returns the proxy certificate path length for the
177 X509_get_pathlen() returns the path length value, or -1 if the extension
188 X509_get_proxy_pathlen() returns the path length value if the given
189 certificate is a proxy one and has a path length set, and -1 otherwise.
H A DSSL_CTX_set_ctlog_list_file.pod13 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
21 SSL_CTX_set_ctlog_list_file() loads a list of CT logs from a specific path.
/openssl/test/
H A Dmoduleloadtest.c21 static int test_load(const char *path, const char *symbol) in test_load() argument
28 if (!sd_load(path, &sd, SD_MODULE)) in test_load()
/openssl/crypto/dso/
H A Ddso_dl.c25 static int dl_pathbyaddr(void *addr, char *path, int sz);
242 static int dl_pathbyaddr(void *addr, char *path, int sz) in dl_pathbyaddr() argument
265 memcpy(path, inf.filename, len); in dl_pathbyaddr()
266 path[len++] = 0; in dl_pathbyaddr()
H A Ddso_dlfcn.c47 static int dlfcn_pathbyaddr(void *addr, char *path, int sz);
400 static int dlfcn_pathbyaddr(void *addr, char *path, int sz) in dlfcn_pathbyaddr() argument
426 memcpy(path, dli.dli_fname, len); in dlfcn_pathbyaddr()
427 path[len++] = 0; in dlfcn_pathbyaddr()
H A Ddso_win32.c67 static int win32_pathbyaddr(void *addr, char *path, int sz);
493 static int win32_pathbyaddr(void *addr, char *path, int sz) in win32_pathbyaddr() argument
564 path, sz, NULL, NULL); in win32_pathbyaddr()
573 path[i] = (char)me32.szExePath[i]; in win32_pathbyaddr()
574 path[len++] = '\0'; in win32_pathbyaddr()
585 memcpy(path, me32.szExePath, len); in win32_pathbyaddr()
586 path[len++] = '\0'; in win32_pathbyaddr()
/openssl/crypto/http/
H A Dhttp_client.c177 const char *path) in OSSL_HTTP_REQ_CTX_set_request_line() argument
203 if (path == NULL) { in OSSL_HTTP_REQ_CTX_set_request_line()
204 path = "/"; in OSSL_HTTP_REQ_CTX_set_request_line()
210 } else if (path[0] != '/' && BIO_printf(rctx->mem, "/") <= 0) { in OSSL_HTTP_REQ_CTX_set_request_line()
217 if (BIO_printf(rctx->mem, "%s "HTTP_1_0"\r\n", path) <= 0) in OSSL_HTTP_REQ_CTX_set_request_line()
1222 char *path; in OSSL_HTTP_get() local
1248 if (!OSSL_HTTP_set1_request(rctx, path, headers, in OSSL_HTTP_get()
1260 OPENSSL_free(path); in OSSL_HTTP_get()
1268 path = OPENSSL_strdup(redirection_url); in OSSL_HTTP_get()
1269 if (path == NULL) { in OSSL_HTTP_get()
[all …]
/openssl/
H A Dconfigdata.pm.in13 my $path = shift;
16 $path = abs_path($path);
24 (my $vol, my $dirs, my $file) = File::Spec->splitpath($path);
30 $path = File::Spec::Unix->catpath('', $dirs, $file);
33 return $path;
/openssl/doc/man7/
H A Dopenssl-env.pod18 Specifies the path to a certificate transparency log list.
23 Specifies the path to the B<openssl> executable. Used by
29 Specifies the path to a configuration file and the directory for
52 Equivalently, the generic B<-provider-path> command-line option may be used.
/openssl/crypto/conf/
H A Dconf_def.c57 static BIO *get_next_file(const char *path, OPENSSL_DIR_CTX **dirctx);
838 static BIO *get_next_file(const char *path, OPENSSL_DIR_CTX **dirctx) in get_next_file() argument
843 pathlen = strlen(path); in get_next_file()
844 while ((filename = OPENSSL_DIR_read(dirctx, path)) != NULL) { in get_next_file()
867 if (path[pathlen - 1] == ']' in get_next_file()
868 || path[pathlen - 1] == '>' in get_next_file()
869 || path[pathlen - 1] == ':') { in get_next_file()
871 OPENSSL_strlcpy(newpath, path, newlen); in get_next_file()
875 OPENSSL_strlcpy(newpath, path, newlen); in get_next_file()
H A Dconf_mod.c303 const char *path = NULL; in module_load_dso() local
308 path = _CONF_get_string(cnf, value, "path"); in module_load_dso()
309 if (path == NULL) { in module_load_dso()
310 path = name; in module_load_dso()
312 dso = DSO_load(NULL, path, NULL, 0); in module_load_dso()
333 ERR_raise_data(ERR_LIB_CONF, errcode, "module=%s, path=%s", name, path); in module_load_dso()
/openssl/engines/
H A De_loader_attic.c951 const char *path; in file_open_ex() member
955 const char *path, *p = uri, *q; in file_open_ex() local
961 path_data[path_data_n++].path = uri; in file_open_ex()
995 path_data[path_data_n++].path = p; in file_open_ex()
999 for (i = 0, path = NULL; path == NULL && i < path_data_n; i++) { in file_open_ex()
1006 ERR_add_error_data(1, path_data[i].path); in file_open_ex()
1010 if (stat(path_data[i].path, &st) < 0) { in file_open_ex()
1013 path_data[i].path); in file_open_ex()
1015 path = path_data[i].path; in file_open_ex()
1018 if (path == NULL) { in file_open_ex()
[all …]
/openssl/Configurations/
H A D15-android.conf88 my $path = "$ndk/meta/platforms.json";
89 open my $fh, $path or die "Could not open '$path' $!";

Completed in 58 milliseconds

1234567