/third_party/openssl/test/ssl-tests/ |
D | protocol_version.pm | 105 my ($dtls, $fips) = @_; 106 if ($dtls && $fips) { 109 return $dtls ? alldisabled("dtls1", "dtls1_2") : 117 my $dtls = $method eq "DTLS"; 119 undef $method if !$dtls; 127 @protocols = $dtls ? @dtls_protocols_fips : @tls_protocols_fips; 128 @min_protocols = $dtls ? @min_dtls_protocols_fips : @min_tls_protocols_fips; 129 @max_protocols = $dtls ? @max_dtls_protocols_fips : @max_tls_protocols_fips; 130 $min_enabled = $dtls ? $min_dtls_enabled_fips : $min_tls_enabled_fips; 131 $max_enabled = $dtls ? $max_dtls_enabled_fips : $max_tls_enabled_fips; [all …]
|
/third_party/libcoap/src/ |
D | coap_openssl.c | 136 coap_dtls_context_t dtls; member 386 coap_dtls_context_t *dtls = in coap_dtls_generate_cookie() local 389 int r = HMAC_Init_ex(dtls->cookie_hmac, NULL, 0, NULL, NULL); in coap_dtls_generate_cookie() 390 r &= HMAC_Update(dtls->cookie_hmac, in coap_dtls_generate_cookie() 393 r &= HMAC_Update(dtls->cookie_hmac, in coap_dtls_generate_cookie() 396 r &= HMAC_Final(dtls->cookie_hmac, cookie, cookie_len); in coap_dtls_generate_cookie() 730 context->dtls.ctx = SSL_CTX_new(DTLS_method()); in coap_dtls_new_context() 731 if (!context->dtls.ctx) in coap_dtls_new_context() 733 SSL_CTX_set_min_proto_version(context->dtls.ctx, DTLS1_2_VERSION); in coap_dtls_new_context() 734 SSL_CTX_set_app_data(context->dtls.ctx, &context->dtls); in coap_dtls_new_context() [all …]
|
D | mem.c | 266 INIT_STORAGE(dtls, COAP_MAX_DTLS_SESSIONS); in coap_memory_init()
|
/third_party/gstreamer/gstplugins_bad/ext/dtls/ |
D | meson.build | 15 openssl_dep = dependency('openssl', version : '>= 1.0.1', required : get_option('dtls')) 16 libcrypto_dep = dependency('libcrypto', required : get_option('dtls'))
|
D | plugin.c | 50 dtls,
|
/third_party/libcoap/ |
D | BUILDING | 90 ./configure --enable-tests --disable-documentation --enable-examples --disable-dtls --enable-shared 121 ./configure --disable-tests --disable-documentation --disable-examples --disable-dtls 131 ./configure --disable-tests --disable-documentation --disable-examples --disable-dtls
|
D | configure.ac | 322 AC_ARG_ENABLE([dtls], optenable 323 [AS_HELP_STRING([--enable-dtls], 356 …'--with-openssl', '--with-mbedtls' or '--with-tinydtls' without '--enable-dtls' is useles and will… 377 …openssl', '--with-mbedtls' or '--with-tinydtls' at the same time while '--enable-dtls' is selected! 378 … ==> Please note, the option '--enable-dtls' is turned on by default if not explicitly disabled!]) 433 … or select a different TLS library or disable the DTLS support using '--disable-dtls'.]) 451 … or select a different TLS library or disable the DTLS support using '--disable-dtls'.]) 469 … or select a different TLS library or disable the DTLS support using '--disable-dtls'.]) 530 …AC_MSG_ERROR([==> Option '--enable-dtls' is set but none of the needed cryptography libraries GnuT… 532 or disable the DTLS support using '--disable-dtls'.])
|
D | CMakeLists.txt | 41 Name of the dtls backend, only relevant if `ENABLE_DTLS` is ON which is default. \
|
/third_party/libcoap/scripts/ |
D | github_dist.sh | 19 … --enable-tests --enable-silent-rules --enable-documentation --enable-examples --disable-dtls && \
|
/third_party/rust/crates/rust-openssl/openssl/ |
D | Cargo.toml | 9 keywords = ["crypto", "tls", "ssl", "dtls"]
|
/third_party/mbedtls/programs/test/ |
D | udp_proxy_wrapper.sh | 81 dtls=[!0]*) dtls_enabled=1;;
|
/third_party/openssl/ |
D | Configure | 395 my @dtls = qw(dtls1 dtls1_2); 508 foreach my $proto ((@tls, @dtls)) 590 "dtls" => [ @dtls ], 591 sub { 0 == scalar grep { !$disabled{$_} } @dtls } 657 my @list = (reverse @dtls); 818 foreach my $proto ((@tls, @dtls)) 828 foreach my $proto (@dtls)
|
D | configdata.pm.in | 67 dtls => [{- dump_data(\@dtls, indent => 0) -}],
|
/third_party/libcoap/cmake/ |
D | FindTinyDTLS.cmake | 37 NAMES tinydtls/dtls.h
|
/third_party/gstreamer/gstplugins_bad/ext/ |
D | meson.build | 14 subdir('dtls') subdir
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_ssl.function | 67 int dtls; 94 opts->dtls = 0; 1702 if( options->dtls != 0 ) 1748 if( options->dtls != 0 ) 1899 TEST_ASSERT( options->dtls == 1 ); 2030 mbedtls_endpoint_free( &client, options->dtls != 0 ? &client_context : NULL ); 2031 mbedtls_endpoint_free( &server, options->dtls != 0 ? &server_context : NULL ); 4448 void handshake_version( int dtls, int client_min_version, int client_max_version, 4462 options.dtls = dtls; 4471 void handshake_psk_cipher( char* cipher, int pk_alg, data_t *psk_str, int dtls ) [all …]
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | dtls.c | 224 GST_CHECK_MAIN (dtls);
|
/third_party/openssl/test/ |
D | ssl_old_test.c | 889 int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; in main() local 1031 dtls = 1; in main() 1244 if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) { in main() 1294 if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1 in main() 1367 if (dtls || dtls1 || dtls12) { in main()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
D | mod.rs | 319 let mut ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ctx() 342 let mut ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ctx() 377 let mut ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ssl() 411 let ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ssl()
|
/third_party/gstreamer/gstplugins_bad/tests/check/ |
D | meson.build | 120 [['elements/dtls.c'], not libcrypto_dep.found(), [libcrypto_dep]],
|
/third_party/mbedtls/tests/ |
D | ssl-opt.sh | 624 *s_server*-dtls*) 794 *dtls=1*|*-dtls*|*-u*) DTLS=1;;
|
/third_party/openssl/doc/man1/ |
D | openssl.pod | 572 =item B<-dtls>, B<-dtls1>, B<-dtls1_2> 575 With B<-dtls>, clients will negotiate any supported DTLS protocol version.
|
/third_party/openssl/ssl/statem/ |
D | statem_lib.c | 1415 int dtls = SSL_IS_DTLS(s); in version_cmp() local 1419 if (!dtls) in version_cmp()
|
/third_party/openssl/doc/man7/ |
D | provider-base.pod | 600 =item "tls-min-dtls" (B<OSSL_CAPABILITY_TLS_GROUP_MIN_DTLS>) <integer> 602 =item "tls-max-dtls" (B<OSSL_CAPABILITY_TLS_GROUP_MAX_DTLS>) <integer>
|
/third_party/gstreamer/gstplugins_bad/ |
D | meson_options.txt | 102 option('dtls', type : 'feature', value : 'auto', description : 'DTLS encoder and decoder plugin') feature
|