Home
last modified time | relevance | path

Searched refs:available (Results 1 – 25 of 248) sorted by relevance

12345678910

/openssl-master/doc/man3/
A DSSL_get_ciphers.pod12 - get list of available SSL_CIPHERs
30 SSL_get_ciphers() returns the stack of available SSL_CIPHERs for B<ssl>,
31 sorted by preference. If B<ssl> is NULL or no ciphers are available, NULL
34 SSL_CTX_get_ciphers() returns the stack of available SSL_CIPHERs for B<ctx>.
47 If B<ssl> is NULL or no ciphers are available, NULL is returned.
49 SSL_get_client_ciphers() returns the stack of available SSL_CIPHERs matching the
51 available, or B<ssl> is not operating in server mode, NULL is returned.
63 available, or there are less ciphers than B<priority> available, NULL
67 SSL_CIPHER names that are available in both the client and the server. B<buf> is
75 available shared ciphersuites whether or not they are enabled. This is a server
[all …]
A DOpenSSL_version.pod109 C<compiler: ...> if available, or C<compiler: information not available>
114 The date of the build process in the form C<built on: ...> if available
115 or C<built on: date not available> otherwise.
116 The date would not be available in a reproducible build, for example.
121 if available, or C<platform: information not available> otherwise.
126 if available, or C<OPENSSLDIR: N/A> otherwise.
131 if available, or C<ENGINESDIR: N/A> otherwise. This option is deprecated in
137 if available, or C<MODULESDIR: N/A> otherwise.
146 or C<CPUINFO: N/A> if not available.
150 For an unknown I<t>, the text C<not available> is returned.
A DSSL_CTX_set_cipher_list.pod11 - choose list of available SSL_CIPHERs
28 SSL_CTX_set_cipher_list() sets the list of available ciphers (TLSv1.2 and below)
37 SSL_CTX_set_ciphersuites() is used to configure the available TLSv1.3
83 A RSA cipher can only be chosen, when a RSA certificate is available.
87 A DSA cipher can only be chosen, when a DSA certificate is available.
A DSSL_COMP_add_compression_method.pod27 the identifier B<id> to the list of available compression methods. This
31 SSL_COMP_get_compression_methods() returns a stack of all of the available
54 Unlike the mechanisms to set a cipher list, there is no method available to
63 COMP_zlib() compression method available.
A DSSL_SESSION_get0_peer.pod17 B<s> or NULL if no peer certificate is available. The caller should not free the
23 no peer certificate is available.
A DOSSL_LIB_CTX.pod52 available to it that are available in the application library context (without
65 from the parent library context then it will remain available and its reference
80 available in the application's library context and therefore will similarly not
81 yet be available in the newly constructed child library context. As soon as the
82 B<OSSL_provider_init> function returns then the new provider is available in the
A DOPENSSL_Applink.pod19 The referred module is available as F<applink.c>, located alongside
24 Not available.
A DSSL_pending.pod22 and are available inside B<ssl> for immediate read.
32 to return 0, even though readable application data bytes are available (because
48 bytes that are pending and are available for immediate read. SSL_has_pending()
A DSSL_CTX_set_cert_store.pod31 certificates must be accessed. These CA certificates are made available
43 object is available. Not all members of the X509_STORE are used when
48 X509_STORE object and its handling becomes available.
A DEVP_PKEY_meth_get_count.pod26 available: it includes standard methods and any methods added by the
37 EVP_PKEY_meth_count() returns the number of available public key methods.
A DOPENSSL_init_crypto.pod75 With this option the library will automatically load and make available all
82 With this option the library will automatically load and make available all
125 RDRAND engine (if available). This not a default option and is deprecated
143 cryptodev engine (if available). This not a default option and is deprecated
149 CAPI engine (if available). This not a default option and is deprecated
155 padlock engine (if available). This not a default option and is deprecated
206 OpenSSL error strings will not be available, only an error code. This code can
273 call should use the RTLD_NODELETE flag (where available on the platform).
A DEVP_MD_meth_new.pod90 together. The available flags are:
147 data structure is then available with EVP_MD_CTX_get0_md_data().
155 private data structure is then available with EVP_MD_CTX_get0_md_data().
160 See L<EVP_MD_CTX_ctrl(3)> for the available controls.
189 The B<EVP_MD> structure was openly available in OpenSSL before version
A DSSL_get_error.pod65 It means that not enough data was available at this time to complete the
67 If at a later time the underlying B<BIO> has data available for reading the same
71 still unprocessed data available at either the B<SSL> or the B<BIO> layer, even
85 It is safe to call SSL_read() or SSL_read_ex() when more data is available
131 descriptor. This file descriptor is available by calling
139 available in the pool (see ASYNC_init_thread(3)). This will only occur if the
A DOSSL_CMP_exec_certreq.pod85 If the requested certificate is available the function returns 1 and the
87 If no error occurred but no certificate is available yet then
96 to see whether meanwhile the requested certificate is available.
132 OSSL_CMP_try_certreq() returns 1 if the requested certificate is available
135 in case a 'waiting' status has been received and checkAfter value is available.
A DSSL_CTX_set_session_ticket_cb.pod43 available. If ticket decryption was successful then the B<ss> argument contains
94 be available. A new ticket should not be sent to the client.
115 Do not use a ticket (if one was available). Do not send a renewed ticket to the
120 Do not use a ticket (if one was available). Send a renewed ticket to the client.
147 no session data will be available and the callback must not use the B<ss>
A DSSL_CTX_load_verify_locations.pod33 are located. The certificates available via B<CAfile>, B<CApath> and
80 looked up by the CA subject name hash value, which must hence be available.
117 number condition are available, only the first one will be examined. This
118 may lead to unexpected results if the same CA certificate is available
A DX509_verify_cert.pod30 starting with I<target> and followed by all available intermediate certificates.
74 If the certificate must be rejected on the basis of the data available
75 or any required certificate status data is not available they return 0.
A DEVP_PKEY_asn1_get_count.pod29 ASN.1 methods available: it includes standard methods and any methods
60 EVP_PKEY_asn1_count() returns the number of available public key methods.
/openssl-master/crypto/siphash/
A Dsiphash.c154 size_t available = SIPHASH_BLOCK_SIZE - ctx->len; in SipHash_Update() local
157 if (inlen < available) { in SipHash_Update()
164 memcpy(&ctx->leavings[ctx->len], in, available); in SipHash_Update()
165 inlen -= available; in SipHash_Update()
166 in += available; in SipHash_Update()
/openssl-master/doc/man7/
A DEVP_CIPHER-DES.pod13 The following algorithms are available in the FIPS provider as well as the
24 The following algorithms are available in the default provider, but not the
43 The following algorithms are available in the legacy provider:
A DEVP_CIPHER-AES.pod13 The following algorithms are available in the FIPS provider as well as the
50 The following algorithms are available in the default provider, but not the
A Dopenssl-glossary.pod17 implementation for any given algorithm available for use.
34 the algorithm implementations in the Base Provider are also available in the
49 implementations. It is loaded by default if no other provider is available. All
50 the algorithm implementations in the Base Provider are also available in the
80 Fetching is the process of looking through the available algorithm
/openssl-master/
A DREADME-PROVIDERS.md20 Documentation about writing providers is available on the [provider(7)]
48 may find that some algorithms are no longer available unless they load the
57 The FIPS provider contains a sub-set of the algorithm implementations available
69 available in the default provider. For example, it contains algorithms to
/openssl-master/test/recipes/80-test_cmp_http_data/Mock/
A Dserver.cnf3 port = 0 # 0 means that the server should choose a random available port
/openssl-master/test/
A DREADME.md52 You can find the list of available tests like this:
74 alltests The current set of tests becomes the whole set of available
81 assigned the whole set of available tests, effectively making
89 tests is first assigned the whole set of available tests,

Completed in 68 milliseconds

12345678910