Home
last modified time | relevance | path

Searched refs:settings (Results 1 – 25 of 65) sorted by relevance

123

/openssl/crypto/conf/
H A Dconf_sap.c34 OPENSSL_INIT_SETTINGS settings; in OPENSSL_config() local
36 memset(&settings, 0, sizeof(settings)); in OPENSSL_config()
38 settings.appname = strdup(appname); in OPENSSL_config()
39 settings.flags = DEFAULT_CONF_MFLAGS; in OPENSSL_config()
40 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, &settings); in OPENSSL_config()
44 int ossl_config_int(const OPENSSL_INIT_SETTINGS *settings) in ossl_config_int() argument
54 filename = settings ? settings->filename : NULL; in ossl_config_int()
55 appname = settings ? settings->appname : NULL; in ossl_config_int()
56 flags = settings ? settings->flags : DEFAULT_CONF_MFLAGS; in ossl_config_int()
H A Dconf_lib.c424 int OPENSSL_INIT_set_config_filename(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_filename() argument
435 free(settings->filename); in OPENSSL_INIT_set_config_filename()
436 settings->filename = newfilename; in OPENSSL_INIT_set_config_filename()
444 settings->flags = flags; in OPENSSL_INIT_set_config_file_flags()
447 int OPENSSL_INIT_set_config_appname(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_appname() argument
458 free(settings->appname); in OPENSSL_INIT_set_config_appname()
459 settings->appname = newappname; in OPENSSL_INIT_set_config_appname()
465 void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings) in OPENSSL_INIT_free() argument
467 free(settings->filename); in OPENSSL_INIT_free()
468 free(settings->appname); in OPENSSL_INIT_free()
[all …]
/openssl/doc/man3/
H A DSSL_clear.pod15 Reset B<ssl> to allow another connection. All settings (method, ciphers,
21 settings are kept, a side effect is the handling of the current SSL session.
29 settings corresponding. This explicitly means, that e.g. the special method
40 reset operation however keeps several settings of the last sessions
41 (some of these settings were made automatically during the last
43 same peer that shares these settings, and may fail if that peer
44 changes its settings between connections. Use the sequence
H A DSSL_new.pod18 data for a TLS/SSL connection. The new structure inherits the settings
20 options, verification settings, timeout settings. An B<SSL> structure is
31 the settings in I<s> into the new B<SSL> object.
41 The subset of settings in I<s> that are duplicated are:
47 =item any tmp_dh settings set via L<SSL_set_tmp_dh(3)>,
54 =item any DANE settings
60 =item any minimum or maximum protocol settings set via
87 =item any security level settings or callbacks
H A DRAND_get0_primary.pod51 For that reason it is recommended not to change the settings of these
53 Instead, an application should change the default settings for new DRBG instances
H A DOPENSSL_init_ssl.pod11 int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
60 OPENSSL_init_ssl() takes a B<settings> parameter which can be used to
H A DSSL_CTX_ctrl.pod19 The SSL_*_ctrl() family of functions is used to manipulate settings of
H A DSSL_CTX_set_msg_callback.pod38 default settings that will be copied to new B<SSL> objects by
40 SSL_set_msg_callback_arg() modify the actual settings of an B<SSL>
H A DSSL_get_ciphers.pod38 The list depends on settings like the cipher list, the supported protocol
40 SRP and PSK ciphers are only enabled if the appropriate callbacks or settings
H A DSSL_SESSION_get_time.pod8 - retrieve and manipulate session time and timeout settings
H A DOpenSSL_version.pod158 The current OpenSSL cpu settings.
208 The current OpenSSL cpu settings.
H A DSSL_SESSION_free.pod38 is successfully completed. Depending on the settings, see
/openssl/doc/man1/
H A Dopenssl-version.pod.in66 ENGINESDIR settings.
70 MODULESDIR settings.
74 The random number generator source settings.
78 The OpenSSL CPU settings info.
H A Dopenssl-info.pod.in74 Outputs the OpenSSL CPU settings info.
H A Dopenssl-x509.pod.in86 convert certificates to various forms, edit certificate trust settings,
226 any extensions present and any trust settings.
534 Trust settings currently are only used with a root CA.
539 on the meaning of trust settings.
541 Future versions of OpenSSL will recognize trust settings on any
550 certificate is output and any trust settings are discarded.
552 certificate is automatically output if any trust settings are modified.
/openssl/ssl/
H A Dssl_init.c91 int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS * settings) in OPENSSL_init_ssl() argument
115 if (!OPENSSL_init_crypto(opts, settings)) in OPENSSL_init_ssl()
/openssl/crypto/
H A Dinit.c462 int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings) in OPENSSL_init_crypto() argument
587 if (settings == NULL) { in OPENSSL_init_crypto()
592 conf_settings = settings; in OPENSSL_init_crypto()
/openssl/include/internal/
H A Dquic_cc.h36 OSSL_CC_DATA *(*new)(OSSL_PARAM *settings, OSSL_PARAM *options,
/openssl/ssl/quic/
H A Dcc_dummy.c16 static OSSL_CC_DATA *dummy_new(OSSL_PARAM *settings, OSSL_PARAM *options, in dummy_new() argument
/openssl/ssl/record/
H A Drecordmethod.h145 const OSSL_PARAM *settings,
/openssl/include/openssl/
H A Dcrypto.h.in462 int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
470 int OPENSSL_INIT_set_config_filename(OPENSSL_INIT_SETTINGS *settings,
472 void OPENSSL_INIT_set_config_file_flags(OPENSSL_INIT_SETTINGS *settings,
474 int OPENSSL_INIT_set_config_appname(OPENSSL_INIT_SETTINGS *settings,
477 void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings);
/openssl/test/
H A DREADME.ssltest.md145 Additional handshake settings can be configured in the `extra` section of each
188 * NPNProtocols, ALPNProtocols - NPN and ALPN settings. Server and client
192 * SRPUser, SRPPassword - SRP settings. For client, this is the SRP user to
273 Note that the test expectations sometimes depend on the Configure settings. For
/openssl/ssl/record/methods/
H A Dtls_common.c1051 BIO_ADDR *peer, const OSSL_PARAM *settings, in tls_int_new_record_layer() argument
1067 if (settings != NULL) { in tls_int_new_record_layer()
1068 for (p = settings; p->key != NULL; p++) { in tls_int_new_record_layer()
1170 const OSSL_PARAM *settings, const OSSL_PARAM *options, in tls_new_record_layer() argument
1179 transport, next, local, peer, settings, in tls_new_record_layer()
H A Dktls_meth.c503 const OSSL_PARAM *settings, const OSSL_PARAM *options,
512 transport, next, local, peer, settings,
H A Ddtls_meth.c633 const OSSL_PARAM *settings, const OSSL_PARAM *options, in dtls_new_record_layer() argument
642 transport, next, local, peer, settings, in dtls_new_record_layer()

Completed in 80 milliseconds

123