Home
last modified time | relevance | path

Searched refs:custom (Results 1 – 25 of 61) sorted by relevance

123

/openssl/test/ssl-tests/
H A D03-custom_verify.cnf6 test-1 = 1-verify-custom-reject
7 test-2 = 2-verify-custom-allow
8 test-3 = 3-verify-custom-retry
40 [1-verify-custom-reject]
43 [1-verify-custom-reject-ssl]
47 [1-verify-custom-reject-server]
68 [2-verify-custom-allow]
71 [2-verify-custom-allow-ssl]
75 [2-verify-custom-allow-server]
95 [3-verify-custom-retry]
[all …]
H A D03-custom_verify.cnf.in25 # Same test as above but with a custom callback that always fails.
27 name => "verify-custom-reject",
40 # Same test as above but with a custom callback that always succeeds.
42 name => "verify-custom-allow",
56 name => "verify-custom-retry",
80 # Same test as above but with a custom callback that always fails.
83 name => "noverify-ignore-custom-reject",
100 name => "noverify-accept-custom-allow",
131 name => "verify-custom-success-no-root",
144 # Same test as above but with a custom callback that always fails.
[all …]
/openssl/test/recipes/30-test_evp_data/
H A Devpmac_blake.txt149 Input = "Sample input for keylen<blocklen and custom"
155 Input = "Sample input for keylen<blocklen and custom"
174 Input = "Sample input for keylen<blocklen, salt and custom"
196 Input = "Combo input with outlen, custom and salt"
205 Input = "Sample input for keylen<blocklen and custom"
211 Input = "Sample input for keylen<blocklen and custom"
230 Input = "Sample input for keylen<blocklen, salt and custom"
249 Input = "Combo input with outlen, custom and salt"
/openssl/doc/man3/
H A DBIO_get_data.pod21 These functions are mainly useful when implementing a custom BIO.
23 The BIO_set_data() function associates the custom data pointed to by B<ptr> with
25 This can be used by custom BIOs for storing implementation specific information.
32 have occurred (for example through calling custom ctrls). The BIO_get_init()
41 BIO_get_data() returns a pointer to the implementation specific custom data
H A DSSL_CTX_set_ct_validation_callback.pod65 register a custom callback that may implement a different policy than either of
92 enabled via the built-in or the custom callbacks, by setting a NULL callback.
96 enabled via either SSL_enable_ct() or a non-null custom callback, and 0
110 be set if a custom client extension handler has been registered to handle SCT
118 They return 0 if an error occurs, e.g. a custom client extension handler has
H A DOSSL_CMP_SRV_CTX_new.pod119 OSSL_CMP_SRV_CTX_init() sets in the given I<srv_ctx> a custom server context
130 Otherwise I<delay> takes a custom server context and a request message as input.
134 Otherwise I<clean> takes a custom server context and a transaction ID pointer
143 OSSL_CMP_SRV_CTX_get0_custom_ctx() returns the custom server context from
175 OSSL_CMP_SRV_CTX_get0_custom_ctx() returns the custom server context
H A DSSL_extension_supported.pod12 - custom TLS extension handling
75 SSL_CTX_add_custom_ext() adds a custom extension for a TLS/DTLS client or server
82 SSL_CTX_add_client_custom_ext() adds a custom extension for a TLS/DTLS client
91 SSL_CTX_add_server_custom_ext() adds a custom extension for a TLS/DTLS server
106 The callback B<add_cb> is called to send custom extension data to be
259 If the same custom extension type is received multiple times a fatal
260 B<decode_error> alert is sent and the handshake aborts. If a custom extension
H A DBIO_get_rpoll_descriptor.pod16 void *custom;
75 allocation for custom poll descriptor types. Any of the definitions in the union
H A DCONF_modules_load_file.pod115 Load custom configuration file and section, only print warnings on error,
124 Load and parse configuration file manually, custom error handling:
H A DPEM_read_bio_ex.pod6 PEM_FLAG_ONLY_B64 - read PEM format files with custom processing
H A DX509_load_http.pod46 and without the possibility to specify custom BIOs.
H A DDSA_set_method.pod59 results. See L<DSA_meth_new(3)> for information on constructing custom DSA_METHOD
H A DX509_STORE_CTX_new.pod213 custom "purpose" (see below) or supply a nondefault verification callback
223 possible to create a custom purpose value. Setting a purpose requests that
239 also possible to create a custom trust value. Since X509_STORE_CTX_set_purpose()
/openssl/doc/designs/quic-design/
H A Dquic-io-arch.md21 APIs; using custom network interaction BIOs in order to get the best
37 - We want to support custom BIOs on the network side and to the extent
48 over TCP. This will require applications using custom BIOs on the network side
249 BIOs, and therefore perform blocking I/O on top of any custom BIO.
254 custom poller which synchronises using a custom poll descriptor based
313 - Does not require an application-provided network-side custom BIO to be
367 application-provided custom BIO.
424 } custom[BIO_POLL_DESCRIPTOR_NUM_CUSTOM];
443 reserved for application-defined use. The `value.custom` field of the
450 custom poll descriptors.
[all …]
H A Dquic-tls.md146 * It registers itself as a custom TLS record layer
147 * It supplies callbacks to register a custom TLS extension
156 `QUIC_TLS` registers itself as a custom TLS record layer. A new internal
157 function is used to provide the custom record method data and associate it with
168 to first check whether a custom record method has been specified and always use
174 The custom record layer will need a record layer specific argument (`rlarg`
223 Libssl already has the ability for an application to supply a custom extension
230 The custom extension API enables the caller to supply `add`, `free` and `parse`
/openssl/providers/implementations/macs/
H A Dkmac_prov.c129 unsigned char custom[KMAC_MAX_CUSTOM_ENCODED]; member
162 OPENSSL_cleanse(kctx->custom, kctx->custom_len); in kmac_free()
256 memcpy(dst->custom, src->custom, dst->custom_len); in kmac_dup()
347 kctx->custom, kctx->custom_len, block_len)) { in kmac_init()
355 kctx->custom, kctx->custom_len, block_len) in kmac_init()
500 if (!encode_string(kctx->custom, sizeof(kctx->custom), &kctx->custom_len, in kmac_set_ctx_params()
/openssl/doc/man7/
H A DEVP_MAC-KMAC.pod46 =item "custom" (B<OSSL_MAC_PARAM_CUSTOM>) <octet string>
83 The "custom" and "no-short-mac" parameters must be set as part of or before
96 const unsigned char *custom, size_t custom_len,
122 if (custom != NULL && custom_len != 0)
124 (void *)custom, custom_len);
H A DEVP_MAC-BLAKE2.pod47 =item "custom" (B<OSSL_MAC_PARAM_CUSTOM>) <octet string>
H A Dopenssl-quic.pod158 An application may also choose to implement a custom BIO. The new
380 Your application uses a custom BIO method to provide the SSL object with network
383 Changes needed: The custom BIO must be re-architected to have datagram
466 transmitted and received datagrams via a L<BIO_s_dgram_pair(3)> or custom BIO.
730 network BIO. This is typically an OS socket handle, though custom BIOs could
731 choose to implement their own custom poll descriptor format.
744 custom BIO is also possible.
760 a L<BIO_s_datagram(3)>, or a custom BIO which implements
/openssl/
H A DHACKING.md4 This document describes the way to add custom modifications to OpenSSL sources.
6 If you are adding new public functions to the custom library build, you need to
/openssl/providers/implementations/kdfs/
H A Dsskdf.c182 static int kmac_init(EVP_MAC_CTX *ctx, const unsigned char *custom, in kmac_init() argument
189 if (custom == NULL) in kmac_init()
193 (void *)custom, custom_len); in kmac_init()
431 const unsigned char *custom = NULL; in sskdf_derive() local
447 custom = kmac_custom_str; in sskdf_derive()
465 custom, custom_len, ctx->out_len, in sskdf_derive()
H A Dkbkdf.c269 static int kmac_init(EVP_MAC_CTX *ctx, const unsigned char *custom, size_t customlen) in kmac_init() argument
273 if (custom == NULL || customlen == 0) in kmac_init()
276 (void *)custom, customlen); in kmac_init()
/openssl/engines/
H A De_afalg.c179 OSSL_ASYNC_FD waitfd, void *custom) in afalg_waitfd_cleanup() argument
188 void *custom = NULL; in afalg_setup_async_event_notification() local
200 &aio->efd, &custom); in afalg_setup_async_event_notification()
215 aio->efd, custom, in afalg_setup_async_event_notification()
/openssl/doc/man1/
H A Dopenssl-mac.pod.in97 =item B<custom:>I<string>
145 openssl mac -macopt custom:Tag -macopt hexkey:40414243444546 \
/openssl/test/
H A DREADME.ssltest.md157 * ClientVerifyCallback - the client's custom certificate verify callback.
159 - None - no custom callback (default)
203 "VerifyCAFile" => "/path/to/custom/file"

Completed in 49 milliseconds

123