mbed TLS Build

Dependents:   Encrypt_Decrypt1 mbed_blink_tls encrypt encrypt

Committer:
markrad
Date:
Thu Jan 05 00:18:44 2017 +0000
Revision:
0:cdf462088d13
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
markrad 0:cdf462088d13 1 test_suites
markrad 0:cdf462088d13 2 The various 'test_suite_XXX' programs from the 'tests' directory, executed
markrad 0:cdf462088d13 3 using 'make check' (Unix make) or 'make test' (Cmake), include test cases
markrad 0:cdf462088d13 4 (reference test vectors, sanity checks, malformed input for parsing
markrad 0:cdf462088d13 5 functions, etc.) for all modules except the SSL modules.
markrad 0:cdf462088d13 6
markrad 0:cdf462088d13 7 selftests
markrad 0:cdf462088d13 8 The 'programs/test/selftest' program runs the 'XXX_self_test()' functions
markrad 0:cdf462088d13 9 of each individual module. Most of them are included in the respective
markrad 0:cdf462088d13 10 test suite, but some slower ones are only included here.
markrad 0:cdf462088d13 11
markrad 0:cdf462088d13 12 compat
markrad 0:cdf462088d13 13 The 'tests/compat.sh' script checks interoperability with OpenSSL and
markrad 0:cdf462088d13 14 GnuTLS (and ourselves!) for every common ciphersuite, in every TLS
markrad 0:cdf462088d13 15 version, both ways (client/server), using client authentication or not.
markrad 0:cdf462088d13 16 For each ciphersuite/version/side/authmode it performs a full handshake
markrad 0:cdf462088d13 17 and a small data exchange.
markrad 0:cdf462088d13 18
markrad 0:cdf462088d13 19 ssl_opt
markrad 0:cdf462088d13 20 The 'tests/ssl-opt.sh' script checks various options and/or operations not
markrad 0:cdf462088d13 21 covered by compat.sh: session resumption (using session cache or tickets),
markrad 0:cdf462088d13 22 renegotiation, SNI, other extensions, etc.