Home
last modified time | relevance | path

Searched refs:dtls (Results 1 - 25 of 77) sorted by relevance

1234

/third_party/openssl/test/ssl-tests/
H A Dprotocol_version.pm105 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
[all...]
/third_party/libcoap/examples/lwip/
H A DMakefile28 # Remove the 4 -dtls checks from "all" if you do not want DTLS included in
40 lib-server-dtls \
41 server-dtls \
42 lib-client-dtls \
43 client-dtls
88 if [ ! -f $(libcoap_dir)/ext/tinydtls/dtls.c ] ; then \
96 if [ ! -f $(libcoap_dir)/ext/tinydtls/dtls.c ] ; then \
140 CD_LWIP_OBJ =$(patsubst %.c,lib-client-dtls/%.o,$(LWIP_SRC))
141 SD_LWIP_OBJ =$(patsubst %.c,lib-server-dtls/%.o,$(LWIP_SRC))
180 CD_COAP_OBJ =$(patsubst %.c,lib-client-dtls/
[all...]
/third_party/libcoap/src/
H A Dcoap_openssl.c153 coap_dtls_context_t dtls; member
466 coap_dtls_context_t *dtls = in coap_dtls_generate_cookie() local
469 int r = HMAC_Init_ex(dtls->cookie_hmac, NULL, 0, NULL, NULL); in coap_dtls_generate_cookie()
470 r &= HMAC_Update(dtls->cookie_hmac, in coap_dtls_generate_cookie()
473 r &= HMAC_Update(dtls->cookie_hmac, in coap_dtls_generate_cookie()
476 r &= HMAC_Final(dtls->cookie_hmac, cookie, cookie_len); in coap_dtls_generate_cookie()
844 context->dtls.ctx = SSL_CTX_new(DTLS_method()); in coap_dtls_new_context()
845 if (!context->dtls.ctx) in coap_dtls_new_context()
847 SSL_CTX_set_min_proto_version(context->dtls.ctx, DTLS1_2_VERSION); in coap_dtls_new_context()
848 SSL_CTX_set_app_data(context->dtls in coap_dtls_new_context()
2821 coap_dtls_context_t *dtls = &((coap_openssl_context_t *)session->context->dtls_context)->dtls; coap_dtls_new_server_session() local
2963 coap_dtls_context_t *dtls = &context->dtls; coap_dtls_new_client_session() local
3116 coap_dtls_context_t *dtls = &((coap_openssl_context_t *)session->context->dtls_context)->dtls; coap_dtls_hello() local
[all...]
H A Dcoap_mem.c331 INIT_STORAGE(dtls, COAP_MAX_DTLS_SESSIONS); in coap_memory_init()
/third_party/mbedtls/programs/test/
H A Dudp_proxy_wrapper.sh69 dtls=[!0]*) dtls_enabled=1;;
/third_party/libcoap/tests/
H A Dtest_tls.c28 #include <dtls.h>
/third_party/node/deps/openssl/openssl/
H A DConfigure395 my @dtls = qw(dtls1 dtls1_2);
433 "dtls",
509 foreach my $proto ((@tls, @dtls))
590 "dgram" => [ "dtls", "sctp" ],
592 "dtls" => [ @dtls ],
593 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
594 => [ "dtls" ],
657 my @list = (reverse @dtls);
818 foreach my $proto ((@tls, @dtls))
[all...]
/third_party/openssl/
H A DConfigure395 my @dtls = qw(dtls1 dtls1_2);
433 "dtls",
508 foreach my $proto ((@tls, @dtls))
588 "dgram" => [ "dtls", "sctp" ],
590 "dtls" => [ @dtls ],
591 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
592 => [ "dtls" ],
657 my @list = (reverse @dtls);
818 foreach my $proto ((@tls, @dtls))
[all...]
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Test/
H A DUtils.pm29 my @dtls = available_protocols("dtls");
52 "dtls". Otherwise, it returns the empty list. The strings in the
/third_party/openssl/util/perl/OpenSSL/Test/
H A DUtils.pm29 my @dtls = available_protocols("dtls");
52 "dtls". Otherwise, it returns the empty list. The strings in the
/third_party/mbedtls/tests/src/test_helpers/
H A Dssl_helpers.c2042 if (options->dtls != 0) { in mbedtls_test_ssl_perform_handshake()
2065 if (options->dtls != 0) { in mbedtls_test_ssl_perform_handshake()
2211 TEST_ASSERT(options->dtls == 1); in mbedtls_test_ssl_perform_handshake()
2345 options->dtls != 0 ? &client_context : NULL); in mbedtls_test_ssl_perform_handshake()
2347 options->dtls != 0 ? &server_context : NULL); in mbedtls_test_ssl_perform_handshake()
/third_party/openssl/test/
H A Dssl_old_test.c664 fprintf(stderr, " -dtls - use DTLS\n"); in sv_usage()
889 int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; in main() local
1030 } else if (strcmp(*argv, "-dtls") == 0) { in main()
1031 dtls = 1; in main()
1244 if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) { in main()
1245 fprintf(stderr, "At most one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1 or -dtls12 should " in main()
1294 if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1 in main()
1298 "or add one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1, -dtls12, -reuse\n" in main()
1367 if (dtls || dtls1 || dtls12) { in main()
/third_party/mbedtls/tests/include/test/
H A Dssl_helpers.h105 int dtls; member
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
H A Dmod.rs335 let mut ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ctx()
358 let mut ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ctx()
393 let mut ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ssl()
427 let ctx = SslContext::builder(SslMethod::dtls()).unwrap(); in test_connect_with_srtp_ssl()
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/
H A Dconfigdata.pm353 "dtls",
27648 dtls => [
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/
H A Dconfigdata.pm353 "dtls",
27541 dtls => [
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/
H A Dconfigdata.pm353 "dtls",
27335 dtls => [
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/
H A Dconfigdata.pm360 "dtls",
27631 dtls => [
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/
H A Dconfigdata.pm360 "dtls",
27383 dtls => [
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/
H A Dconfigdata.pm359 "dtls",
27550 dtls => [
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/
H A Dconfigdata.pm353 "dtls",
27541 dtls => [
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/
H A Dconfigdata.pm360 "dtls",
27589 dtls => [
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/
H A Dconfigdata.pm360 "dtls",
27589 dtls => [
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/
H A Dconfigdata.pm353 "dtls",
27335 dtls => [
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/
H A Dconfigdata.pm360 "dtls",
27383 dtls => [

Completed in 258 milliseconds

1234