/openssl-master/doc/man7/ |
A D | property.pod | 63 A I<property query clause> is a single conditional test. 71 A I<property query> is a sequence of comma separated property query clauses. 72 It is an error if a property name appears in more than one query clause. 93 B<-> is a prefix operator that means any global query clause involving the 110 When an algorithm is looked up, a property query is used to determine 112 All mandatory query clauses B<must> be present and the implementation 113 that additionally has the largest number of matching optional query 127 Two levels of property query are supported. 129 property query. 134 property query by preceding the property name with a '-'. [all …]
|
A D | OSSL_PROVIDER-base.pod | 23 It may be used in a property query string with fetching functions. 25 It isn't mandatory to query for this property, except to make sure to get 38 These may be used in a property query string with fetching functions to select 52 These may be used in a property query string with fetching functions to select
|
A D | OSSL_PROVIDER-legacy.pod | 27 It may be used in a property query string with fetching functions such as 29 functions that take a property query string, such as 32 It isn't mandatory to query for any of these properties, except to
|
/openssl-master/crypto/property/ |
A D | README.md | 33 the property definitions as almost immutable. Specifically, a query can 51 * A query cache is desirable. This would be a hash table keyed by the 52 algorithm identifier and the entire query string and it would map to 75 contains the property definition and query parsers. 78 for dealing with property lists are also included: comparison of a query 79 against a definition and merging two queries into a single larger query. 83 Algorithms are discovered from their NID and a query string. 86 The caching of query results has to be efficient but it must also be robust
|
A D | property.c | 49 const char *query; member 172 return OPENSSL_LH_strhash(a->query); in query_hash() 177 int res = strcmp(a->query, b->query); in query_cmp() 608 elem.query = prop_query != NULL ? prop_query : ""; in ossl_method_store_cache_get() 649 elem.query = prop_query; in ossl_method_store_cache_set() 659 p->query = p->body; in ossl_method_store_cache_set() 666 memcpy((char *)p->query, prop_query, len + 1); in ossl_method_store_cache_set()
|
A D | property_query.c | 62 int ossl_property_has_optional(const OSSL_PROPERTY_LIST *query) in ossl_property_has_optional() argument 64 return query->has_optional ? 1 : 0; in ossl_property_has_optional()
|
/openssl-master/crypto/http/ |
A D | http_lib.c | 50 const char *query, *query_end; in OSSL_parse_url() local 128 path_end = query = query_end = frag = frag_end = path + strlen(path); in OSSL_parse_url() 136 query = p + 1; in OSSL_parse_url() 143 if (query == path_end) /* we did not record a query component */ in OSSL_parse_url() 153 || !copy_substring(pquery, query, query_end) in OSSL_parse_url()
|
/openssl-master/doc/man3/ |
A D | TS_RESP_CTX_new.pod | 21 library context of I<libctx> and a property query of I<propq>. 22 The library context and property query can be used to select which providers 26 and property query to NULL. This results in the default (NULL) library context
|
A D | b2i_PVK_bio_ex.pod | 26 the key. The supplied library context I<libctx> and property query 30 library context and property query string are used. 36 property query string I<propq> are used in any decrypt operation. 39 library context and property query string are used.
|
A D | ASN1_item_d2i_bio.pod | 37 I<libctx> parameter and the property query string in I<propq>. See 43 OSSL_LIB_CTX is used (i.e. NULL) and with a NULL property query string. 50 B<OSSL_LIB_CTX> provided in the I<libctx> parameter and the property query 55 default B<OSSL_LIB_CTX> is used (i.e. NULL) and with a NULL property query 62 default B<OSSL_LIB_CTX> is used (i.e. NULL) and with a NULL property query
|
A D | X509_STORE_add_cert.pod | 100 query I<propq> are used when fetching algorithms from providers. 103 uses NULL for the library context I<libctx> and property query I<propq>. 112 property query I<propq> are used when fetching algorithms from providers. 115 uses NULL for the library context I<libctx> and property query I<propq>. 124 but uses NULL for the library context I<libctx> and property query I<propq>. 129 paths. The library context I<libctx> and property query I<propq> are used when 134 context I<libctx> and property query I<propq>.
|
A D | X509_LOOKUP.pod | 97 query I<propq> are used when fetching algorithms from providers. 105 uses NULL for the library context I<libctx> and property query I<propq>. 109 query I<propq> are used when fetching algorithms from providers. 115 uses NULL for the library context I<libctx> and property query I<propq>. 127 query I<propq> are used when fetching algorithms from providers. 130 uses NULL for the library context I<libctx> and property query I<propq>. 134 B<X509_STORE>. The library context I<libctx> and property query I<propq> are used 140 uses NULL for the library context I<libctx> and property query I<propq>.
|
A D | CTLOG_new.pod | 33 library context I<libctx> and property query string I<propq>. A name must also 38 library context and the default property query string. 43 will be associated with the given library context I<libctx> and property query 48 property query string are used.
|
A D | EVP_set_default_properties.pod | 33 query for the given I<libctx>. It merges the fips default property query with any 34 existing query strings that have been set via EVP_set_default_properties().
|
A D | CMS_EnvelopedData_create.pod | 27 The library context I<libctx> and the property query I<propq> are used when 33 supported. The library context I<libctx> and the property query I<propq> are 48 the library context I<libctx> and the property query I<propq>.
|
A D | EVP_PKEY_digestsign_supports_digest.pod | 17 key I<pkey>. The query is done within an optional library context I<libctx> and 18 with an optional property query I<propq>.
|
A D | ASN1_item_new.pod | 21 the I<libctx> parameter and the property query string in I<propq>. See 25 B<OSSL_LIB_CTX> is used (i.e. NULL) and with a NULL property query string.
|
A D | OSSL_HTTP_parse_url.pod | 49 C<[scheme://][userinfo@]host[:port][/path][?query][#fragment]> and splits it up 50 into scheme, userinfo, host, port, path, query, and fragment components. 61 If I<pquery> is NULL, any given query component is handled as part of the path. 63 For absent scheme, userinfo, port, query, and fragment components
|
A D | OCSP_response_status.pod | 56 the library ctx I<libctx> and the property query string I<propq> (see 60 that the default library context is used with an empty property query string. 69 query string I<propq> (see L<crypto(7)/ALGORITHM FETCHING> for further 73 default library context is used with an empty property query string.
|
A D | EVP_PKEY_CTX_get0_libctx.pod | 21 OSSL_LIB_CTX and property query string values respectively that were 31 OSSL_LIB_CTX and property query string associated with the EVP_PKEY_CTX or NULL
|
A D | CMS_data_create.pod | 20 The library context I<libctx> and the property query I<propq> are used when 29 property query I<propq>.
|
/openssl-master/test/ |
A D | http_test.c | 206 char *user, *host, *port, *path, *query, *frag; in test_http_url_ok() local 213 &path, &query, &frag)) in test_http_url_ok() 223 if (res && *query != '\0') in test_http_url_ok() 224 res = TEST_str_eq(query, "q"); in test_http_url_ok() 229 OPENSSL_free(query); in test_http_url_ok()
|
A D | property_test.c | 82 const char *query; member 127 && TEST_ptr(q = ossl_parse_query(NULL, parser_tests[n].query, 0)) in test_property_parse() 159 int query; member 191 if (parse_error_tests[n].query) { in test_property_parse_error() 277 const char *query; member 302 && TEST_ptr(q = ossl_parse_query(NULL, definition_tests[n].query, 0)) in test_definition_compares()
|
/openssl-master/ |
A D | configdata.pm.in | 164 my $query = undef; 176 'query|q=s' => \$query, 184 if (!$query && scalar @ARGV > 0) { 317 if ($query) { 322 my $result = eval "\$confquery->$query";
|
/openssl-master/doc/internal/man3/ |
A D | OSSL_METHOD_STORE.pod | 10 - implementation method store and query 51 The B<OSSL_METHOD_STORE> also holds an internal query cache, which is accessed 81 that matches the property query I<prop_query>. 92 for a method identified by I<nid> that matches the property query 99 provider I<prov>, with the property query I<prop_query> in the I<store>.
|