This is originally from git@github.com:YanziNetworks/tinyDTLS.git commit d7ca5120e7e853f76e9743db2a0236a26ba71363 Change-Id: I6e6c2da76e11b473ead1b0ddac929f8bd670d7e3 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
27 lines
833 B
Plaintext
27 lines
833 B
Plaintext
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
|
|
|