| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a test that covers a libtls client talking to a Go TLS server with | jsing | 2017-03-07 | 1 | -5/+107 |
* | Allow ciphers to be set on the TLS config. | jsing | 2017-03-07 | 1 | -0/+10 |
* | Provide support for libtls protocols and allow for protocols to be set on | jsing | 2017-03-07 | 1 | -3/+47 |
* | Add handling for errors on the TLS config and properly check/handle | jsing | 2017-03-07 | 2 | -6/+23 |
* | libtls errors are much more descriptive these days - return them directly | jsing | 2017-03-07 | 1 | -9/+8 |
* | We no longer need to keep pointers following tls_config_set_*() calls. | jsing | 2017-03-07 | 1 | -6/+3 |
* | Use an unsigned loop variable to avoid a comparison between signed | bluhm | 2017-03-06 | 1 | -1/+1 |
* | Add an initial regress test that covers the server-side of libssl, by | jsing | 2017-03-05 | 3 | -1/+220 |
* | Treat "ERROR in STARTUP" as an actual error, rather than failing without | jsing | 2017-03-04 | 1 | -2/+2 |
* | Remove commented out code and fix indentation of surrounding statements. | jsing | 2017-03-04 | 1 | -12/+5 |
* | Remove handling for SSLv2. | jsing | 2017-03-04 | 1 | -14/+3 |
* | Ensure MD and key initialized before processing HMAC | inoguchi | 2017-03-03 | 1 | -31/+206 |
* | Add EVP test for MD5-SHA1. | jsing | 2017-03-01 | 1 | -0/+3 |
* | Add missing includes to avoid implicit function declarations. | jsg | 2017-02-25 | 4 | -3/+7 |
* | Check return value of every BN_* functions in bntest | inoguchi | 2017-02-23 | 1 | -393/+426 |
* | Remove unused variable in C source to make the test compile and pass. | bluhm | 2017-02-07 | 1 | -1/+0 |
* | LibreSSL : regress for carry bug in mulx4x_mont and sqr8x_mont | inoguchi | 2017-01-31 | 1 | -1/+78 |
* | More s/OSCP/OCSP/ typos | tom | 2017-01-27 | 1 | -1/+1 |
* | Update ssl versions regress to handle min/max configured versions and | jsing | 2017-01-25 | 1 | -47/+201 |
* | Add start of a regress for cert gen and validation. not clean, won't | beck | 2017-01-25 | 5 | -0/+394 |
* | link in rsa test | beck | 2017-01-25 | 1 | -1/+2 |
* | Add rsa test from openssl, since it has a license now | beck | 2017-01-25 | 2 | -0/+344 |
* | fix make clean and warnings | otto | 2017-01-24 | 2 | -1/+3 |
* | make sure realloc preserves data | otto | 2017-01-24 | 1 | -17/+45 |
* | use ${.OBJDIR} | otto | 2017-01-24 | 1 | -8/+8 |
* | Update client tests for changes in default EC formats/curves. | jsing | 2017-01-24 | 1 | -52/+31 |
* | Use prime256v1 for tests unless otherwise specified. | jsing | 2017-01-24 | 1 | -4/+0 |
* | hook malloc_general to the tests | otto | 2017-01-23 | 1 | -2/+2 |
* | test malloc/realloc/free with some flag combo's | otto | 2017-01-23 | 2 | -0/+122 |
* | Fix regress to handle movement of ssl structures to internal | beck | 2017-01-23 | 1 | -2/+4 |
* | Update the TLS ALPN unit tests to work with internal/opaque data. | jsing | 2017-01-22 | 2 | -13/+11 |
* | Make explicit _ct and _nonct versions of bn_mod_exp funcitons that | beck | 2017-01-21 | 5 | -8/+143 |
* | unhook ocsp test from the default since it currently requires network access and | beck | 2017-01-18 | 1 | -2/+1 |
* | Correctly tls_config_set_ca_file() return value (no effective change). | jsing | 2017-01-17 | 1 | -2/+2 |
* | Add regress tests for libtls, which currently cover handshakes and closes | jsing | 2017-01-12 | 3 | -1/+356 |
* | Provide TLS_INT for consistency with libssl/libcrypto. | jsing | 2017-01-09 | 2 | -2/+4 |
* | Add regress tests for max shared version code. | jsing | 2017-01-03 | 1 | -2/+133 |
* | Add regress coverage for enabled protocol version range. | jsing | 2016-12-30 | 2 | -1/+146 |
* | Extend regress to include a peer certificate in the session. | jsing | 2016-12-26 | 1 | -58/+134 |
* | Ensure that after an i2d_SSL_SESSION() call, the passed pointer now points | jsing | 2016-12-26 | 1 | -8/+9 |
* | Update regress for ECDHE with X25519. | jsing | 2016-12-21 | 1 | -41/+41 |
* | Update libcrypto regress to handle header and non-exported symbol changes. | jsing | 2016-12-21 | 4 | -4/+10 |
* | Ensure negative time/timeout are handled appropriately. | jsing | 2016-12-21 | 1 | -1/+27 |
* | Revise regress for changes to ssl_parse_serverhello_tlsext(). | jsing | 2016-12-18 | 1 | -3/+3 |
* | Update regress test to handle change to ssl_cipher_list_to_bytes(). | jsing | 2016-12-04 | 1 | -10/+11 |
* | Update regress for IDEA cipher suite removal. | jsing | 2016-11-06 | 1 | -83/+83 |
* | Add regress test script for openssl command. | inoguchi | 2016-11-06 | 3 | -2/+966 |
* | Add regress for X25519, converted from BoringSSL. | jsing | 2016-11-05 | 3 | -1/+150 |
* | Set PROG so that the binary correctly gets recompiled when the libraries | miod | 2016-11-05 | 1 | -11/+5 |
* | Move pqueue regress from libcrypto to libssl, since that's where the pqueue | jsing | 2016-11-04 | 5 | -5/+5 |