⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ssl_ctx_set_cipher_list.pod

📁 开源的ssl算法openssl,版本0.9.8H
💻 POD
字号:
=pod=head1 NAMESSL_CTX_set_cipher_list, SSL_set_cipher_list - choose list of available SSL_CIPHERs=head1 SYNOPSIS #include <openssl/ssl.h> int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str); int SSL_set_cipher_list(SSL *ssl, const char *str);=head1 DESCRIPTIONSSL_CTX_set_cipher_list() sets the list of available ciphers for B<ctx>using the control string B<str>. The format of the string is describedin L<ciphers(1)|ciphers(1)>. The list of ciphers is inherited by allB<ssl> objects created from B<ctx>.SSL_set_cipher_list() sets the list of ciphers only for B<ssl>.=head1 NOTESThe control string B<str> should be universally usable and not dependon details of the library configuration (ciphers compiled in). Thus nosyntax checking takes place. Items that are not recognized, because thecorresponding ciphers are not compiled in or because they are mistyped,are simply ignored. Failure is only flagged if no ciphers could be collectedat all.It should be noted, that inclusion of a cipher to be used into the list isa necessary condition. On the client side, the inclusion into the list isalso sufficient. On the server side, additional restrictions apply. All ciphershave additional requirements. ADH ciphers don't need a certificate, butDH-parameters must have been set. All other ciphers need a correspondingcertificate and key.A RSA cipher can only be chosen, when a RSA certificate is available.RSA export ciphers with a keylength of 512 bits for the RSA key requirea temporary 512 bit RSA key, as typically the supplied key has a lengthof 1024 bit (seeL<SSL_CTX_set_tmp_rsa_callback(3)|SSL_CTX_set_tmp_rsa_callback(3)>).RSA ciphers using EDH need a certificate and key and additional DH-parameters(see L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>).A DSA cipher can only be chosen, when a DSA certificate is available.DSA ciphers always use DH key exchange and therefore need DH-parameters(see L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>).When these conditions are not met for any cipher in the list (e.g. aclient only supports export RSA ciphers with a asymmetric key lengthof 512 bits and the server is not configured to use temporary RSAkeys), the "no shared cipher" (SSL_R_NO_SHARED_CIPHER) error is generatedand the handshake will fail.=head1 RETURN VALUESSSL_CTX_set_cipher_list() and SSL_set_cipher_list() return 1 if any ciphercould be selected and 0 on complete failure.=head1 SEE ALSOL<ssl(3)|ssl(3)>, L<SSL_get_ciphers(3)|SSL_get_ciphers(3)>,L<SSL_CTX_use_certificate(3)|SSL_CTX_use_certificate(3)>,L<SSL_CTX_set_tmp_rsa_callback(3)|SSL_CTX_set_tmp_rsa_callback(3)>,L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>,L<ciphers(1)|ciphers(1)>=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -