Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / extlibs / tinydtls / README
1 CONTENTS
2
3 This library contains functions and structures that can help
4 constructing a single-threaded UDP server with DTLS support in
5 C99. The following components are available:
6
7 * dtls
8   Basic support for DTLS with pre-shared key mode.
9
10 * tests
11   The subdirectory tests contains test programs that show how each
12   component is used.
13
14 BUILDING
15
16 When using the code from the git repository at sourceforge, invoke
17 'autoreconf' to re-create the configure script. To build for Contiki,
18 place tinydtls into Contiki's apps directory and call
19   ./configure --with-contiki.
20
21 After configuration, invoke make to build the library and associated
22 test programs. To add tinydtls as Contiki application, drop it into
23 the apps directory and add the following line to your Makefile:
24
25   APPS += tinydtls/aes tinydtls/sha2 tinydtls/ecc tinydtls
26