-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolved conflicts: * dtls.c: Copyright year * tests/dtls-client.c: fall-through for DTLS_PSK_HINT instead of return 0 Change-Id: Icb9fa31d3b4c8cd43a867cab2862ba026b6f4617
- Loading branch information
Showing
76 changed files
with
4,566 additions
and
1,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
############################################################################### | ||
# | ||
# Copyright (c) 2022 Contributors to the Eclipse Foundation | ||
# | ||
# See the LICENSE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Eclipse Public License 2.0 | ||
# which is available at http://www.eclipse.org/legal/epl-2.0 | ||
# and the Eclipse Distribution License v. 1.0 | ||
# available at http://www.eclipse.org/org/documents/edl-v10.php | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Contributors: | ||
# Jimmy Björklund - initial version | ||
# Achim Kraus - add getrandom and libcunit | ||
# additional minor fixes | ||
# | ||
############################################################################### | ||
|
||
include(CheckIncludeFile) | ||
include(CheckFunctionExists) | ||
include(CheckLibraryExists) | ||
include(TestBigEndian) | ||
include(CheckCSourceCompiles) | ||
include(CheckStructHasMember) | ||
|
||
check_include_file(assert.h HAVE_ASSERT_H) | ||
check_include_file(arpa/inet.h HAVE_ARPA_INET_H) | ||
check_include_file(fcntl.h HAVE_FCNTL_H) | ||
check_include_file(inttypes.h HAVE_INTTYPES_H) | ||
check_include_file(memory.h HAVE_MEMORY_H) | ||
check_include_file(netdb.h HAVE_NETDB_H) | ||
check_include_file(netinet/in.h HAVE_NETINET_IN_H) | ||
check_include_file(stddef.h HAVE_STDDEF_H) | ||
check_include_file(stdint.h HAVE_STDINT_H) | ||
check_include_file(stdlib.h HAVE_STDLIB_H) | ||
check_include_file(string.h HAVE_STRING_H) | ||
check_include_file(strings.h HAVE_STRINGS_H) | ||
check_include_file(time.h HAVE_TIME_H) | ||
check_include_file(sys/param.h HAVE_SYS_PARAM_H) | ||
check_include_file(sys/socket.h HAVE_SYS_SOCKET_H) | ||
check_include_file(sys/stat.h HAVE_SYS_STAT_H) | ||
check_include_file(sys/types.h HAVE_SYS_TYPES_H) | ||
check_include_file(sys/time.h HAVE_SYS_TIME_H) | ||
check_include_file(unistd.h HAVE_UNISTD_H) | ||
check_include_file(float.h HAVE_FLOAT_H) | ||
check_include_file(dlfcn.h HAVE_DLFCN_H) | ||
|
||
check_function_exists (memset HAVE_MEMSET) | ||
check_function_exists (select HAVE_SELECT) | ||
check_function_exists (socket HAVE_SOCKET) | ||
check_function_exists (strdup HAVE_STRDUP) | ||
check_function_exists (strerror HAVE_STRERROR) | ||
check_function_exists (strnlen HAVE_STRNLEN) | ||
check_function_exists (fls HAVE_FLS) | ||
check_function_exists (vprintf HAVE_VPRINTF) | ||
check_function_exists (getrandom HAVE_GETRANDOM) | ||
|
||
if( ${make_tests} ) | ||
if(BUILD_SHARED_LIBS) | ||
check_library_exists (libcunit.so CU_initialize_registry "" HAVE_LIBCUNIT) | ||
else() | ||
# this link options only intended to be used for the cunit tests | ||
set(CMAKE_REQUIRED_LINK_OPTIONS -no-pie) | ||
check_library_exists (libcunit.a CU_initialize_registry "" HAVE_LIBCUNIT) | ||
endif() | ||
endif() | ||
|
||
if( "${HAVE_STRING_H}" AND "${HAVE_STRINGS_H}" AND | ||
"${HAVE_FLOAT_H}" AND "${HAVE_STDLIB_H}" AND | ||
"${HAVE_STDDEF_H}" AND "${HAVE_STDINT_H}" AND | ||
"${HAVE_INTTYPES_H}" AND "${HAVE_DLFCN_H}" ) | ||
set( STDC_HEADERS 1) | ||
endif() | ||
|
||
check_struct_has_member ("struct sockaddr_in6" sin6_len "netinet/in.h" HAVE_SOCKADDR_IN6_SIN6_LEN) | ||
|
||
TEST_BIG_ENDIAN(IS_BIG_ENDIAN) | ||
if(IS_BIG_ENDIAN) | ||
set(WORDS_BIGENDIAN 1) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
############################################################################### | ||
# | ||
# Copyright (c) 2022 Contributors to the Eclipse Foundation | ||
# | ||
# See the LICENSE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Eclipse Public License 2.0 | ||
# which is available at http://www.eclipse.org/legal/epl-2.0 | ||
# and the Eclipse Distribution License v. 1.0 | ||
# available at http://www.eclipse.org/org/documents/edl-v10.php | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Contributors: | ||
# Jimmy Björklund - initial version | ||
# Achim Kraus - minor fixes | ||
# | ||
############################################################################### | ||
|
||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(tinydtls) | ||
|
||
include (AutoConf.cmake) | ||
|
||
option(BUILD_SHARED_LIBS "Link using shared libs" OFF) | ||
option(make_tests "Make test programs and examples" OFF) | ||
|
||
if(NOT PLATFORM) | ||
set(PLATFORM "posix" CACHE STRING "Choose platform." FORCE) | ||
set_property(CACHE PLATFORM PROPERTY STRINGS "contiki" "espidf" "posix" "riot") | ||
endif() | ||
|
||
set(PACKAGE_NAME "tinydtls") | ||
set(PACKAGE_VERSION "0.8.6" ) | ||
set(SOVERSION "0" ) | ||
|
||
option(DTLS_ECC "disable/enable support for TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8" ON ) | ||
option(DTLS_PSK "disable/enable support for TLS_PSK_WITH_AES_128_CCM_8" ON) | ||
|
||
configure_file(dtls_config.h.cmake.in dtls_config.h ) | ||
|
||
add_library(tinydtls) | ||
|
||
target_sources(tinydtls PRIVATE | ||
dtls.c | ||
netq.c | ||
peer.c | ||
session.c | ||
crypto.c | ||
ccm.c | ||
hmac.c | ||
dtls_time.c | ||
dtls_debug.c | ||
dtls_prng.c | ||
aes/rijndael.c | ||
aes/rijndael_wrap.c | ||
sha2/sha2.c | ||
ecc/ecc.c) | ||
|
||
target_include_directories(tinydtls PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}) | ||
target_compile_definitions(tinydtls PUBLIC DTLSv12 WITH_SHA256 SHA2_USE_INTTYPES_H DTLS_CHECK_CONTENTTYPE) | ||
target_compile_options(tinydtls PRIVATE -fPIC -pedantic -std=c99 -Wall -Wextra -Wformat-security -Winline -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wshadow -Wstrict-prototypes -Wswitch-default -Wswitch-enum -Wunused) | ||
|
||
set_target_properties(tinydtls PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION ${SOVERSION}) | ||
|
||
if( ${make_tests} ) | ||
add_subdirectory(tests) | ||
endif() | ||
|
||
if(BUILD_SHARED_LIBS) | ||
install(TARGETS tinydtls LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ) | ||
else() | ||
install(TARGETS tinydtls DESTINATION ${CMAKE_INSTALL_LIBDIR} ) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
MODULE = tinydtls | ||
|
||
CFLAGS += -DDTLSv12 -DWITH_SHA256 | ||
|
||
SRC := ccm.c crypto.c dtls.c dtls_debug.c dtls_time.c hmac.c netq.c peer.c session.c dtls_prng.c | ||
|
||
include $(RIOTBASE)/Makefile.base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.