Home
last modified time | relevance | path

Searched refs:dtls (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/openssl/test/ssl-tests/
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 ? $max_dtls_enabled_fips : $max_tls_enabled_fips;
[all …]
/third_party/libcoap/examples/lwip/
DMakefile40 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/%.o,$(COAP_SRC))
181 SD_COAP_OBJ =$(patsubst %.c,lib-server-dtls/%.o,$(COAP_SRC))
[all …]
DREADME9 $ sudo ./server-dtls # With TinyDTLS support
17 (If server-dtls is running, you can use coaps:// as appropriate.)
31 (Only works for server-dtls.)
34 (Only works for server-dtls.)
47 $ sudo ./client-dtls # With TinyDTLS support
49 As client (or client-dtls) tries to connect to coap://libcoap.net/, the tap0
68 (Only works for client-dtls.)
70 (Only works for client-dtls.)
73 (Only works for client-dtls.)
77 is "coap://libcoap.net/" for client and client-dtls.
[all …]
D.gitignore8 client-dtls
10 server-dtls
/third_party/libcoap/src/
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.ctx, &context->dtls); in coap_dtls_new_context()
[all …]
/third_party/libcoap/
DBUILDING90 ./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
141 ./configure --disable-tests --disable-documentation --disable-examples --disable-dtls
Dconfigure.ac369 AC_ARG_ENABLE([dtls], optenable
370 [AS_HELP_STRING([--enable-dtls],
409 …'--with-openssl', '--with-mbedtls' or '--with-tinydtls' without '--enable-dtls' is useless and wil…
436 …openssl', '--with-mbedtls' or '--with-tinydtls' at the same time while '--enable-dtls' is selected!
437 … ==> Please note, the option '--enable-dtls' is turned on by default if not explicitly disabled!])
504 … or select a different TLS library or disable the DTLS support using '--disable-dtls'.])
522 … or select a different TLS library or disable the DTLS support using '--disable-dtls'.])
540 … or select a different TLS library or disable the DTLS support using '--disable-dtls'.])
557 if test -e "$srcdir/ext/tinydtls/dtls.h"; then
581 … select a different TLS library or disable the DTLS support using '--disable-dtls'.])
[all …]
/third_party/libcoap/scripts/
Dgithub_dist.sh19 … --enable-tests --enable-silent-rules --enable-documentation --enable-examples --disable-dtls && \
/third_party/rust/crates/rust-openssl/openssl/
DCargo.toml9 keywords = ["crypto", "tls", "ssl", "dtls"]
/third_party/mbedtls/programs/test/
Dudp_proxy_wrapper.sh81 dtls=[!0]*) dtls_enabled=1;;
/third_party/openssl/
DConfigure395 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)
Dconfigdata.pm.in67 dtls => [{- dump_data(\@dtls, indent => 0) -}],
/third_party/node/deps/openssl/openssl/
DConfigure395 my @dtls = qw(dtls1 dtls1_2);
509 foreach my $proto ((@tls, @dtls))
592 "dtls" => [ @dtls ],
593 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
657 my @list = (reverse @dtls);
818 foreach my $proto ((@tls, @dtls))
828 foreach my $proto (@dtls)
Dconfigdata.pm.in67 dtls => [{- dump_data(\@dtls, indent => 0) -}],
/third_party/libcoap/cmake/
DFindTinyDTLS.cmake37 NAMES tinydtls/dtls.h
/third_party/mbedtls/tests/suites/
Dtest_suite_ssl.function2571 void handshake_version(int dtls, int client_min_version, int client_max_version,
2584 options.dtls = dtls;
2596 void handshake_psk_cipher(char *cipher, int pk_alg, data_t *psk_str, int dtls)
2602 options.dtls = dtls;
2617 void handshake_cipher(char *cipher, int pk_alg, int dtls)
2619 test_handshake_psk_cipher(cipher, pk_alg, NULL, dtls);
2656 int expected_srv_fragments, int dtls)
2666 options.dtls = dtls;
2712 options.dtls = 1;
2734 options.dtls = 1;
[all …]
/third_party/mbedtls/tests/src/test_helpers/
Dssl_helpers.c76 opts->dtls = 0; in mbedtls_test_init_handshake_options()
1769 if (options->dtls != 0) { in mbedtls_test_ssl_perform_handshake()
1810 if (options->dtls != 0) { in mbedtls_test_ssl_perform_handshake()
1973 TEST_ASSERT(options->dtls == 1); in mbedtls_test_ssl_perform_handshake()
2109 options->dtls != 0 ? &client_context : NULL); in mbedtls_test_ssl_perform_handshake()
2111 options->dtls != 0 ? &server_context : NULL); in mbedtls_test_ssl_perform_handshake()
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/
Dconfigdata.pm27335 dtls => [
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/
Dconfigdata.pm27383 dtls => [
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/
Dconfigdata.pm27648 dtls => [
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/
Dconfigdata.pm27492 dtls => [
/third_party/node/deps/openssl/config/archs/VC-WIN32/no-asm/
Dconfigdata.pm27471 dtls => [
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/
Dconfigdata.pm27631 dtls => [
/third_party/node/deps/openssl/config/archs/linux32-s390x/no-asm/
Dconfigdata.pm27383 dtls => [
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/
Dconfigdata.pm27563 dtls => [

1234