aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/unit_tls_policy.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add final annotations as appropriate in the test codeJack Lloyd2017-09-221-1/+1
|
* More include header cleanupsJack Lloyd2017-09-211-2/+0
|
* Reformat code with astyle + fix code styleTomasz Frydrych2017-05-011-27/+27
|
* Add TLS policy tests for DSA keysRené Korthaus2017-02-061-0/+32
|
* Work around an apparent problem with GCC on AIXJack Lloyd2017-01-061-4/+5
| | | | | | | | When compiled by GCC 4.8 on AIX 7.1 ppc32, the TLS policy tests fail because the exception thrown from the TLS policy check ends up not being caught at runtime by the test if the catch statement is for `std::exception&` or even `Botan::Exception&` but only if the actually thrown type `Botan::TLS::TLS_Exception` is caught.
* Fix mutex in oids.cppJack Lloyd2016-10-121-1/+0
| | | | Remove bogus includes for TLS tests
* New TLS positive and negative tests.Juraj Somorovsky2016-09-301-0/+162
TLS message parsing: - CertificateVerify - HelloVerify - ClientHello (with extensions) - ServerHello (with extensions) - NewSessionTicket - Alert TLS message processing: - HelloVerify TLS Policy tests Unit tests with TLS client authentication Added test_throws method that checks the correct exception message.