/openssl-master/test/ssl-tests/ |
A D | 03-custom_verify.cnf | 6 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 …]
|
A D | 03-custom_verify.cnf.in | 25 # 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-master/test/recipes/30-test_evp_data/ |
A D | evpmac_blake.txt | 149 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-master/doc/man3/ |
A D | BIO_get_data.pod | 21 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
|
A D | SSL_CTX_set_ct_validation_callback.pod | 65 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
|
A D | SSL_extension_supported.pod | 12 - 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
|
A D | OSSL_CMP_SRV_CTX_new.pod | 108 OSSL_CMP_SRV_CTX_init() sets in the given I<srv_ctx> a custom server context 118 OSSL_CMP_SRV_CTX_get0_custom_ctx() returns the custom server context from 150 OSSL_CMP_SRV_CTX_get0_custom_ctx() returns the custom server context
|
A D | CONF_modules_load_file.pod | 115 Load custom configuration file and section, only print warnings on error, 124 Load and parse configuration file manually, custom error handling:
|
A D | X509_load_http.pod | 43 and without the possibility to specify custom BIOs.
|
A D | PEM_read_bio_ex.pod | 6 PEM_FLAG_ONLY_B64 - read PEM format files with custom processing
|
A D | DSA_set_method.pod | 59 results. See L<DSA_meth_new(3)> for information on constructing custom DSA_METHOD
|
A D | X509_get0_signature.pod | 67 used by implementations of algorithms which need to set custom
|
A D | SSL_new.pod | 93 =item any configured custom extensions
|
A D | X509_STORE_CTX_set_verify_cb.pod | 100 only way to set a custom verification callback is by inheriting it from the
|
A D | CMS_sign.pod | 108 function CMS_sign_add1_signer(), non default digests can be used and custom
|
A D | OSSL_HTTP_transfer.pod | 99 whereby it may make use of a custom defined argument I<arg>, 155 The optional list I<headers> may contain additional custom HTTP header lines.
|
/openssl-master/doc/man7/ |
A D | EVP_MAC-KMAC.pod | 45 =item "custom" (B<OSSL_MAC_PARAM_CUSTOM>) <octet string> 47 Sets the custom value. 67 The "custom" parameter must be set as part of or before the EVP_MAC_init() call. 79 const unsigned char *custom, size_t custom_len, 105 if (custom != NULL && custom_len != 0) 107 (void *)custom, custom_len);
|
A D | EVP_MAC-BLAKE2.pod | 46 =item "custom" (B<OSSL_MAC_PARAM_CUSTOM>) <octet string> 48 Sets the custom value.
|
A D | EVP_KDF-SS.pod | 24 =item B<H(x) = KMACxxx(x, key=salt, custom="KDF", outlen=mac_size)>
|
/openssl-master/providers/implementations/macs/ |
A D | kmac_prov.c | 128 unsigned char custom[KMAC_MAX_CUSTOM_ENCODED]; member 152 OPENSSL_cleanse(kctx->custom, kctx->custom_len); in kmac_free() 237 memcpy(dst->custom, src->custom, dst->custom_len); in kmac_dup() 308 kctx->custom, kctx->custom_len, block_len)) { in kmac_init() 318 kctx->custom, kctx->custom_len, block_len) in kmac_init() 438 if (!encode_string(kctx->custom, sizeof(kctx->custom), &kctx->custom_len, in kmac_set_ctx_params()
|
/openssl-master/providers/implementations/kdfs/ |
A D | sskdf.c | 158 static int kmac_init(EVP_MAC_CTX *ctx, const unsigned char *custom, in kmac_init() argument 165 if (custom == NULL) in kmac_init() 169 (void *)custom, custom_len); in kmac_init() 362 const unsigned char *custom = NULL; in sskdf_derive() local 379 custom = kmac_custom_str; in sskdf_derive() 399 custom, custom_len, ctx->out_len, in sskdf_derive()
|
/openssl-master/ |
A D | HACKING.md | 4 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-master/engines/ |
A D | e_afalg.c | 180 OSSL_ASYNC_FD waitfd, void *custom) in afalg_waitfd_cleanup() argument 189 void *custom = NULL; in afalg_setup_async_event_notification() local 201 &aio->efd, &custom); in afalg_setup_async_event_notification() 216 aio->efd, custom, in afalg_setup_async_event_notification()
|
/openssl-master/doc/man1/ |
A D | openssl-mac.pod.in | 99 =item B<custom:>I<string> 143 openssl mac -macopt custom:Tag -macopt hexkey:40414243444546 \
|
/openssl-master/test/ |
A D | README.ssltest.md | 157 * ClientVerifyCallback - the client's custom certificate verify callback. 159 - None - no custom callback (default) 203 "VerifyCAFile" => "/path/to/custom/file"
|