summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/unit/cipher_list.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revise cipher list regress coverage of SSL_set_security_level().jsing2022-12-171-21/+43
| | | | | | | A SSL_set_security_level() call was added to the cipher list regress, which expects a failure - however, it should succeed and fails for a completely unrelated reason. Rework this regress so that it actually passes and tests for the expected behaviour.
* Make internal header file names consistenttb2022-11-261-2/+2
| | | | | | | | | | | | | | | | Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names used for internal headers. Move all these headers we inherited from OpenSSL to *_local.h, reserving the name *_internal.h for our own code. Similarly, move dtls_locl.h and ssl_locl.h to dtls_local and ssl_local.h. constant_time_locl.h is moved to constant_time.h since it's special. Adjust all .c files in libcrypto, libssl and regress. The diff is mechanical with the exception of tls13_quic.c, where #include <ssl_locl.h> was fixed manually. discussed with jsing, no objection bcook
* Revise for SSL_CTX_INTERNAL and SSL_INTERNAL removal.jsing2022-10-021-2/+2
|
* Add some minimal regress coverage for the security level.tb2022-07-071-1/+6
| | | | From beck
* whitespacetb2021-01-091-2/+2
|
* Update regress for DES cipher suite removal.jsing2018-06-021-3/+1
|
* Update regress now that ssl_cipher_list_to_bytes() takes a CBB.jsing2017-10-111-3/+9
| | | | Based on a diff from doug@
* Revise regress now that ssl_bytes_to_cipher_list() takes a CBS.jsing2017-10-101-20/+10
|
* Use current chacha20-poly1305 cipher suite values.jsing2017-08-281-7/+7
|
* Fix regress to handle movement of ssl structures to internalbeck2017-01-231-2/+4
|
* Update regress test to handle change to ssl_cipher_list_to_bytes().jsing2016-12-041-10/+11
|
* specify the array initializer valuelibressl-v2.2.1bcook2015-07-011-2/+2
| | | | noted by kinichiro from github
* Convert ssl_bytes_to_cipher_list to CBS.doug2015-06-281-1/+16
| | | | | | | Link in the new 'unit' regress and expand the invalid tests to include some that would fail before the CBS conversion. input + ok miod@ jsing@
* Add unit tests for LibreSSL.doug2015-06-271-0/+192
cipher_list.c is based on code from jsing@. Discussed with jsing@