| Commit message (Expand) | Author | Files | Lines |
2018-08-22 | Correct session ticket encryption. | jsing | 1 | -4/+11 |
2018-08-21 | fix return value | tb | 1 | -3/+3 |
2018-08-21 | Remove ChaCha20-Poly1305 from the TODO list | tb | 1 | -2/+2 |
2018-08-21 | A failure to _seal() should be looked into, so turn this into an | tb | 1 | -7/+2 |
2018-08-21 | Factor the calls to EVP_AEAD_CTX_open() and EVP_AEAD_CTX_seal() into | tb | 1 | -48/+76 |
2018-08-21 | Merge duplicate benchmark() GET/SSL_shutdown blocks into doConnection(). | cheloha | 1 | -41/+25 |
2018-08-21 | typo in argument type, from Mario dot Andres dot Campos at gmail dot com | schwarze | 1 | -3/+3 |
2018-08-20 | add two missing \n | tb | 1 | -3/+3 |
2018-08-20 | Test EVP_AEAD_CTX_open() at the same time as EVP_AEAD_CTX_seal() | tb | 1 | -5/+23 |
2018-08-20 | remove two redundant tests | tb | 1 | -10/+1 |
2018-08-20 | Use sealed instead of out in a couple of places in preparation of | tb | 1 | -12/+13 |
2018-08-20 | Shuffle the decoding of the hex strings to the top and group all length | tb | 1 | -22/+26 |
2018-08-20 | Run the Wycheproof ChaCha20-Poly1305 test vectors against libcrypto. | tb | 1 | -1/+141 |
2018-08-19 | Don't leak sktmp in X509_verify_cert(). | tb | 1 | -5/+5 |
2018-08-19 | whitespace fix | tb | 1 | -2/+2 |
2018-08-19 | Don't leak db on error in RSA_padding_check_PKCS1_OAEP(). | tb | 1 | -7/+7 |
2018-08-19 | Don't leak a strdup()'ed string on error in do_accept(). | tb | 1 | -1/+3 |
2018-08-19 | Rename and collapse tls12_get_sigandhash_cbb(). | jsing | 4 | -39/+28 |
2018-08-19 | Convert ssl3_send_newsession_ticket() to CBB. | jsing | 1 | -55/+64 |
2018-08-18 | Plug SSL object leaks in doConnection(). | cheloha | 1 | -32/+22 |
2018-08-17 | Convert ssl3_send_client_verify() to CBB. | jsing | 1 | -43/+50 |
2018-08-17 | spelling; | jmc | 1 | -2/+2 |
2018-08-17 | Make the wording more concise, use the imperative throughout, state | schwarze | 1 | -108/+126 |
2018-08-16 | Add regress coverage for CBB_add_u32(). | jsing | 1 | -3/+4 |
2018-08-16 | Provide CBB_add_u32(), as needed for an upcoming conversion. | jsing | 2 | -2/+17 |
2018-08-16 | Simplify the add signature code/logic in ssl3_send_server_key_exchange(). | jsing | 1 | -13/+8 |
2018-08-16 | Convert ssl3_send_server_key_exchange() to CBB. | jsing | 3 | -47/+71 |
2018-08-16 | Convert ssl3_get_server_key_exchange() to CBS. | jsing | 1 | -69/+55 |
2018-08-16 | Revert previous, which was wrong as noted by schwarze. Also revert a hunk | tb | 1 | -4/+7 |
2018-08-16 | Remove unused variable. | rob | 1 | -5/+3 |
2018-08-14 | Add a comment that explains what the check is doing and why len >= 1. | tb | 1 | -1/+2 |
2018-08-14 | The UI_add_{input,verify}_string() functions want a length not including | tb | 1 | -5/+8 |
2018-08-14 | Remove now unused variable, that got left behind from a previous change. | jsing | 1 | -3/+1 |
2018-08-14 | Actually check the return values for EVP_Sign* and EVP_Verify*. | jsing | 2 | -15/+23 |
2018-08-14 | Don't fail by default in the -new case; ok tb jca | cheloha | 1 | -19/+12 |
2018-08-11 | Refactor the nearly identical benchmark loops into a single loop. | cheloha | 1 | -139/+108 |
2018-08-10 | Simplify server key exchange signature verification. | jsing | 1 | -49/+18 |
2018-08-10 | Simplify server kex exchange signature generation. | jsing | 1 | -61/+33 |
2018-08-10 | Add glue to EVP_md5_sha1() so that it can be used with EVP_Sign* and | jsing | 1 | -1/+12 |
2018-08-10 | Add missing include to X25519 synopsis. | jsing | 1 | -2/+3 |
2018-08-10 | In typical swiss-army style, various modes and options cause | deraadt | 1 | -1/+24 |
2018-08-10 | Run the wycheproof ECDSA test vectors against libcrypto. | jsing | 1 | -7/+147 |
2018-08-10 | Run the X25519 wycheproof test vectors against libcrypto. | jsing | 1 | -13/+82 |
2018-08-10 | Rework regress so that it is easier to add additional test types. | jsing | 1 | -35/+59 |
2018-08-10 | Use a table rather than a switch when converting strings to NIDs. | jsing | 1 | -14/+13 |
2018-08-08 | typo: macro-generates wrappers -> macro-generated wrappers | tb | 1 | -3/+3 |
2018-08-05 | Remove unnecessary NULL check from get_cert_by_subject sincelibressl-v2.8.0 | bcook | 1 | -3/+3 |
2018-08-05 | Fix a memory leak in i2d_RSA_NET on failure of ASN1_STRING_set. | bcook | 1 | -2/+2 |
2018-08-05 | In RSA_padding_add_PKCS1_OAEP, dbmask needs to be freed on failure. | bcook | 1 | -3/+7 |
2018-08-05 | Fix memory leak in i2b_PVK in error handling. | bcook | 1 | -14/+10 |