Home
last modified time | relevance | path

Searched refs:SSL_CTX_set_cipher_list (Results 1 – 25 of 56) sorted by relevance

123

/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Ddtlstest.c87 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES128-SHA"))) in test_dtls_unprocessed()
91 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "AES128-SHA:@SECLEVEL=0")) in test_dtls_unprocessed()
92 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_unprocessed()
210 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "DEFAULT:@SECLEVEL=0")) in test_dtls_drop_records()
211 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_drop_records()
327 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "DEFAULT:@SECLEVEL=0")) in test_cookie()
328 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_cookie()
363 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "DEFAULT:@SECLEVEL=0")) in test_dtls_duplicate_records()
364 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_duplicate_records()
488 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES128-SHA"))) in test_swap_records()
[all …]
H A Dcipherlist_test.c207 if (!TEST_true(SSL_CTX_set_cipher_list(fixture->server, "DEFAULT")) in test_default_cipherlist_explicit()
208 || !TEST_true(SSL_CTX_set_cipher_list(fixture->client, "DEFAULT"))) { in test_default_cipherlist_explicit()
222 if (!TEST_int_eq(SSL_CTX_set_cipher_list(fixture->server, "no-such"), 0)) in test_default_cipherlist_clear()
H A Dfatalerrtest.c40 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "AES128-SHA")) in test_fatalerr()
41 || !TEST_true(SSL_CTX_set_cipher_list(cctx, "AES256-SHA")) in test_fatalerr()
H A Dclienthellotest.c113 if (!TEST_false(SSL_CTX_set_cipher_list(ctx, ""))) in test_client_hello()
136 } else if (!TEST_true(SSL_CTX_set_cipher_list(ctx, in test_client_hello()
H A Dciphername_test.c414 if (!SSL_CTX_set_cipher_list(ctx, ciphers)) { in test_cipher_name()
H A Ddtls_mtu_test.c162 if (!TEST_true(SSL_CTX_set_cipher_list(ctx, "PSK"))) in run_mtu_tests()
H A Dsslcorrupttest.c204 || !TEST_true(SSL_CTX_set_cipher_list(cctx, cipher_list[testidx])) in test_ssl_corrupt()
H A Dssl_old_test.c1419 if (!SSL_CTX_set_cipher_list(c_ctx, cipher)) { in main()
1432 if (!SSL_CTX_set_cipher_list(s_ctx, cipher)) { in main()
1445 if (!SSL_CTX_set_cipher_list(s_ctx2, cipher)) { in main()
1458 if (!SSL_CTX_set_cipher_list(c_ctx, cipher) in main()
1459 || !SSL_CTX_set_cipher_list(s_ctx, cipher) in main()
1460 || !SSL_CTX_set_cipher_list(s_ctx2, cipher)) { in main()
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DSSL_CTX_set_cipher_list.pod5 SSL_CTX_set_cipher_list,
15 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str);
23 SSL_CTX_set_cipher_list() sets the list of available ciphers (TLSv1.2 and below)
59 The control string B<str> for SSL_CTX_set_cipher_list() and
90 SSL_CTX_set_cipher_list() and SSL_set_cipher_list() return 1 if any cipher
H A DSSL_CTX_use_certificate.pod142 cipher selected, see also L<SSL_CTX_set_cipher_list(3)>.
190 L<SSL_CTX_set_cipher_list(3)>,
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/
H A Dcipherlist_test.c211 if (!TEST_true(SSL_CTX_set_cipher_list(fixture->server, "DEFAULT")) in test_default_cipherlist_explicit()
212 || !TEST_true(SSL_CTX_set_cipher_list(fixture->client, "DEFAULT"))) in test_default_cipherlist_explicit()
227 if (!TEST_int_eq(SSL_CTX_set_cipher_list(fixture->server, "no-such"), 0)) in test_default_cipherlist_clear()
H A Ddtlstest.c70 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES128-SHA"))) in test_dtls_unprocessed()
351 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES128-SHA"))) in test_swap_app_data()
355 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "AES128-SHA:@SECLEVEL=0")) in test_swap_app_data()
356 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_swap_app_data()
H A Dfatalerrtest.c40 if (!TEST_true(SSL_CTX_set_cipher_list(sctx, "AES128-SHA")) in test_fatalerr()
41 || !TEST_true(SSL_CTX_set_cipher_list(cctx, "AES256-SHA")) in test_fatalerr()
H A Dgosttest.c52 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, ciphers[idx].cipher)) in test_tls13()
53 || !TEST_true(SSL_CTX_set_cipher_list(sctx, ciphers[idx].cipher)) in test_tls13()
H A Dclienthellotest.c108 if (!TEST_false(SSL_CTX_set_cipher_list(ctx, ""))) in test_client_hello()
131 } else if (!TEST_true(SSL_CTX_set_cipher_list(ctx, in test_client_hello()
H A Dciphername_test.c414 if (!SSL_CTX_set_cipher_list(ctx, ciphers)) { in test_cipher_name()
H A Ddtls_mtu_test.c162 if (!TEST_true(SSL_CTX_set_cipher_list(ctx, "PSK"))) in run_mtu_tests()
H A Dsslcorrupttest.c201 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, cipher_list[testidx])) in test_ssl_corrupt()
H A Dssltest_old.c1425 if (!SSL_CTX_set_cipher_list(c_ctx, cipher)) { in main()
1438 if (!SSL_CTX_set_cipher_list(s_ctx, cipher)) { in main()
1451 if (!SSL_CTX_set_cipher_list(s_ctx2, cipher)) { in main()
1464 if (!SSL_CTX_set_cipher_list(c_ctx, cipher) in main()
1465 || !SSL_CTX_set_cipher_list(s_ctx, cipher) in main()
1466 || !SSL_CTX_set_cipher_list(s_ctx2, cipher)) { in main()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DSSL_CTX_set_tmp_ecdh.pod37 L<ssl(7)>, L<SSL_CTX_set1_curves(3)>, L<SSL_CTX_set_cipher_list(3)>,
H A DSSL_CTX_use_certificate.pod143 cipher selected, see also L<SSL_CTX_set_cipher_list(3)>.
192 L<SSL_CTX_set_cipher_list(3)>,
/netbsd-src/crypto/external/bsd/openssl/dist/fuzz/
H A Dserver.c546 ret = SSL_CTX_set_cipher_list(ctx, "ALL:eNULL:@SECLEVEL=0"); in FuzzerTestOneInput()
/netbsd-src/crypto/external/bsd/openssl/dist/apps/
H A Dciphers.c213 if (!SSL_CTX_set_cipher_list(ctx, ciphers)) { in ciphers_main()
/netbsd-src/crypto/external/bsd/openssl.old/dist/apps/
H A Dciphers.c202 if (!SSL_CTX_set_cipher_list(ctx, ciphers)) { in ciphers_main()
/netbsd-src/crypto/external/bsd/openssl.old/dist/fuzz/
H A Dserver.c539 ret = SSL_CTX_set_cipher_list(ctx, "ALL:eNULL:@SECLEVEL=0"); in FuzzerTestOneInput()

123