zephyr/net/ip/tinydtls
Maureen Helm 1942a413fc net: tinydtls: Use assert.h from minimal libc
Now that minimal libc has assert.h, we can remove the workaround from
tinydtls.

Change-Id: I3bb001d1891f0b110b43133d30c262ba320450f7
Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
2016-07-21 16:22:20 +00:00
..
aes
doc
ecc
examples/contiki net: Fix the include paths in Contiki sources 2016-02-05 20:24:46 -05:00
platform-specific net: tinydtls: Use assert.h from minimal libc 2016-07-21 16:22:20 +00:00
sha2
tests
.gitignore net: tinydtls: Add missing header files 2016-02-05 20:16:16 -05:00
LICENSE
Makefile.in
Makefile.tinydtls
README
alert.h
ccm.c
ccm.h
configure.in
crypto.c
crypto.h
debug.c net: contiki: Set the DTLS session IP address and port correctly 2016-02-05 20:15:23 -05:00
debug.h net: Fix the include paths in Contiki sources 2016-02-05 20:24:46 -05:00
dtls.c net: Enable TCP support 2016-04-25 09:40:32 +03:00
dtls.h net: Enable TCP support 2016-04-25 09:40:32 +03:00
dtls_config.h net: tinydtls: Add missing header files 2016-02-05 20:16:16 -05:00
dtls_time.c
dtls_time.h
global.h
hmac.c
hmac.h
netq.c
netq.h
numeric.h
peer.c
peer.h
prng.h
session.c net: contiki: Set the DTLS session IP address and port correctly 2016-02-05 20:15:23 -05:00
session.h net: contiki: Set the DTLS session IP address and port correctly 2016-02-05 20:15:23 -05:00
state.h
t_list.h
tinydtls.h net: tinydtls: Add missing header files 2016-02-05 20:16:16 -05:00
tinydtls.h.in

README

CONTENTS 

This library contains functions and structures that can help
constructing a single-threaded UDP server with DTLS support in
C99. The following components are available:

* dtls
  Basic support for DTLS with pre-shared key mode.

* tests
  The subdirectory tests contains test programs that show how each
  component is used. 

BUILDING

When using the code from the git repository at sourceforge, invoke
'autoreconf' to re-create the configure script. To build for Contiki,
place tinydtls into Contiki's apps directory and call 
  ./configure --with-contiki.

After configuration, invoke make to build the library and associated
test programs. To add tinydtls as Contiki application, drop it into
the apps directory and add the following line to your Makefile:

  APPS += tinydtls/aes tinydtls/sha2 tinydtls/ecc tinydtls