aboutsummaryrefslogtreecommitdiffstats
path: root/test/tls13encryptiontest.c
Commit message (Collapse)AuthorAgeFilesLines
* Adapt all test programsRichard Levitte2017-04-241-5/+4
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3243)
* VMS: Fix internals test programsRichard Levitte2017-04-181-0/+10
| | | | | | | | | | | The internals test programs access header files that aren't guarded by the public __DECC_INCLUDE_PROLOGUE.H and __DECC_INCLUDE_EPILOGUE.H files, and therefore have no idea what the naming convention is. Therefore, we need to specify that explicitely in the internals test programs, since they aren't built with the same naming convention as the library they belong with. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3247)
* Test infrastructure additions.Pauli2017-03-291-29/+23
| | | | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Emilia Käsper <emilia@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3011)
* Fix crash in tls13_encMatt Caswell2017-02-081-0/+18
| | | | | | | | | If s->s3->tmp.new_cipher is NULL then a crash can occur. This can happen if an alert gets sent after version negotiation (i.e. we have selected TLSv1.3 and ended up in tls13_enc), but before a ciphersuite has been selected. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2575)
* Make refdata in tls13encryptest staticMatt Caswell2016-11-301-1/+1
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Convert tls13encryptiontest so that we pass around a pointer not an indexMatt Caswell2016-11-301-94/+170
| | | | | | | We also split the long string literals into 3 to avoid problems where we go over the 509 character limit. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fix some style issues in the TLSv1.3 nonce construction codeMatt Caswell2016-11-291-9/+12
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fix a double free in tls13encryptiontestMatt Caswell2016-11-291-0/+1
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add a test for TLSv1.3 encryption using the new nonce constructionMatt Caswell2016-11-291-0/+303
Reviewed-by: Rich Salz <rsalz@openssl.org>