/openssl/crypto/store/ |
H A D | store_lib.c | 907 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); in OSSL_STORE_SEARCH_by_name() local 909 if (search == NULL) in OSSL_STORE_SEARCH_by_name() 914 return search; in OSSL_STORE_SEARCH_by_name() 920 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); in OSSL_STORE_SEARCH_by_issuer_serial() local 922 if (search == NULL) in OSSL_STORE_SEARCH_by_issuer_serial() 928 return search; in OSSL_STORE_SEARCH_by_issuer_serial() 935 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); in OSSL_STORE_SEARCH_by_key_fingerprint() local 938 if (search == NULL) in OSSL_STORE_SEARCH_by_key_fingerprint() 960 return search; in OSSL_STORE_SEARCH_by_key_fingerprint() 965 OSSL_STORE_SEARCH *search = OPENSSL_zalloc(sizeof(*search)); in OSSL_STORE_SEARCH_by_alias() local [all …]
|
/openssl/test/ |
H A D | ossl_store_test.c | 43 OSSL_STORE_SEARCH *search = NULL; in test_store_open() local 48 && TEST_ptr(search = OSSL_STORE_SEARCH_by_alias("nothing")) in test_store_open() 53 && TEST_true(OSSL_STORE_find(sctx, search)); in test_store_open() 55 OSSL_STORE_SEARCH_free(search); in test_store_open() 64 OSSL_STORE_SEARCH *search = NULL; in test_store_search_by_key_fingerprint_fail() local 66 ret = TEST_ptr_null(search = OSSL_STORE_SEARCH_by_key_fingerprint( in test_store_search_by_key_fingerprint_fail() 68 OSSL_STORE_SEARCH_free(search); in test_store_search_by_key_fingerprint_fail()
|
/openssl/apps/ |
H A D | storeutl.c | 20 int expected, int criterion, OSSL_STORE_SEARCH *search, 87 OSSL_STORE_SEARCH *search = NULL; in storeutl_main() local 272 if ((search = OSSL_STORE_SEARCH_by_name(subject)) == NULL) { in storeutl_main() 284 if ((search = OSSL_STORE_SEARCH_by_issuer_serial(issuer, serial)) in storeutl_main() 291 if ((search = OSSL_STORE_SEARCH_by_key_fingerprint(digest, in storeutl_main() 300 if ((search = OSSL_STORE_SEARCH_by_alias(alias)) == NULL) { in storeutl_main() 316 expected, criterion, search, in storeutl_main() 326 OSSL_STORE_SEARCH_free(search); in storeutl_main() 347 int expected, int criterion, OSSL_STORE_SEARCH *search, in process() argument 377 if (!OSSL_STORE_find(store_ctx, search)) { in process() [all …]
|
/openssl/ |
H A D | NOTES-UNIX.md | 26 a bit of help from a defined runtime shared library search path. 29 scripts do NOT generally set the runtime shared library search path for 34 Runtime shared library search paths are specified with different 40 Possible options to set the runtime shared library search path include 55 search path! Some OpenSSL config targets add an extra directory level 58 used with the runtime shared library search path options, as shown in 64 On modern ELF based systems, there are two runtime search paths tags to 83 How to choose which runtime search path tag is to be set depends on 93 for runtime search path relative to the directory containing current 106 also cases when you'd have to explicitly specify runtime search path
|
H A D | NOTES-PERL.md | 92 favorite package manager. Usually, all you need to do is search 97 $ apt-cache search Text::Template
|
/openssl/doc/man3/ |
H A D | OSSL_STORE_SEARCH.pod | 17 - Type and functions to create OSSL_STORE search criteria 34 void OSSL_STORE_SEARCH_free(OSSL_STORE_SEARCH *search); 48 These functions are used to specify search criteria to help search for specific 51 and then wants to add on search criteria in a uniform and supported manner. 55 B<OSSL_STORE_SEARCH> is an opaque type that holds the constructed search 100 This criterion supports a search by exact match of subject name. 107 This criterion supports a search by exact match of both issuer name and serial 117 This criterion supports a search by exact match of key fingerprint. 130 This criterion supports a search by match of an alias of some kind.
|
H A D | OSSL_STORE_expect.pod | 18 int OSSL_STORE_find(OSSL_STORE_CTX *ctx, OSSL_STORE_SEARCH *search); 33 grained search of objects. 36 context supports the given search type. 38 supported search criterion types.
|
H A D | BIO_find_type.pod | 19 search is made for a B<BIO> of that type. If I<type> is a general type (such as 49 btmp = in_bio; /* in_bio is chain to search through */
|
H A D | EVP_PBE_CipherInit.pod | 42 =head2 PBE algorithm search 44 EVP_PBE_find() and EVP_PBE_find_ex() search for a matching algorithm using two parameters:
|
H A D | CMS_verify_receipt.pod | 19 receipt request. B<certs> is a set of certificates in which to search for the
|
H A D | ASN1_STRING_TABLE_add.pod | 38 on I<nid>. It will search the local table first, then the standard one.
|
H A D | OSSL_DECODER_CTX_new_for_pkey.pod | 54 The search of decoder implementations can be limited with I<input_type> and 62 The search of decoder implementations can also be limited with I<keytype>
|
H A D | SSL_CTX_load_verify_locations.pod | 83 extension must be different (e.g. 9d66eef0.0, 9d66eef0.1 etc). The search 93 will search for suitable certificates first in B<CAfile>, then in B<CApath>.
|
H A D | X509v3_get_ext_by_NID.pod | 72 with I<nid> or I<obj> from extension STACK I<x>. The search starts from the 122 These search functions start from the extension B<after> the I<lastpos> parameter
|
H A D | OSSL_PROVIDER.pod | 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>
|
H A D | DEFINE_STACK_OF.pod | 175 a linear search for a pointer equal to I<ptr>. The index of the first 217 for use in a binary search operation. That is it should return zero, a 224 A failed search is indicated by a B<-1> return value.
|
/openssl/engines/ |
H A D | e_loader_attic.txt | 16 search only supported for directories 20 ATTIC_R_UNSUPPORTED_SEARCH_TYPE:109:unsupported search type
|
/openssl/doc/man7/ |
H A D | provider-storemgmt.pod | 99 kind of data to expect, search criteria, and so on. More on those below, in 156 Indicates that the caller wants to search for an object with the given 164 Indicates that the caller wants to search for an object with the given 172 Indicates that the caller wants to search for an object with the given 179 Indicates that the caller wants to search for an object with the given 184 Indicates that the caller wants to search for an object with the given 199 Several of these search criteria may be combined. For example, to 200 search for a certificate by issuer+serial, both the "issuer" and the
|
H A D | ossl-guide-libraries-introduction.pod | 188 search criterion for these implementations. The default provider includes all 203 "provider=base" can be used as a search criterion for these implementations. 218 property query string "provider=fips" can be used as a search criterion for 236 the property "provider=legacy" can be used as a search criterion for these
|
H A D | ossl-guide-libcrypto-introduction.pod | 118 fetched implicitly using default search criteria (which uses NULL for the 123 using default search criteria and an algorithm name that is consistent with 316 * we're not supplying any particular search criteria for our SHA256
|
/openssl/crypto/x509/ |
H A D | x509_vfy.c | 3244 unsigned int search; in build_chain() local 3271 search |= S_DOTRUSTED; in build_chain() 3317 while (search != 0) { in build_chain() 3336 if ((search & S_DOTRUSTED) != 0) { in build_chain() 3338 if ((search & S_DOALTERNATE) != 0) { in build_chain() 3393 search &= ~S_DOALTERNATE; in build_chain() 3456 search &= ~S_DOUNTRUSTED; in build_chain() 3480 search |= S_DOALTERNATE; in build_chain() 3488 if ((search & S_DOUNTRUSTED) != 0) { in build_chain() 3501 search &= ~S_DOUNTRUSTED; in build_chain() [all …]
|
/openssl/include/openssl/ |
H A D | store.h | 237 void OSSL_STORE_SEARCH_free(OSSL_STORE_SEARCH *search); 254 int OSSL_STORE_find(OSSL_STORE_CTX *ctx, const OSSL_STORE_SEARCH *search);
|
/openssl/doc/man1/ |
H A D | openssl-storeutl.pod.in | 93 Empty values are permitted but are ignored for the search. That is, 94 a search with an empty value will have the same effect as not specifying
|
/openssl/doc/internal/man3/ |
H A D | ossl_method_construct.pod | 98 Optionally, I<prov> may be given as a search criterion, to narrow down the 99 search of a method belonging to just one provider.
|
H A D | OSSL_METHOD_STORE.pod | 86 I<*prop> may be a pointer to a provider, which will narrow the search 99 Additionally, if I<prov> isn't NULL, it will be used to narrow the search
|