Age | Commit message (Expand) | Author |
2015-02-07 | Provide a SSL_CIPHER_get_by_value() function that allows a cipher to be | Joel Sing |
2015-01-26 | Add AEAD as a "MAC alias" so that it is possible to identify/select ciphers | Joel Sing |
2014-12-14 | Remove trailing whitespace. | Joel Sing |
2014-12-10 | Remove support for GOST R 34.10-94 signature authentication, along with | Joel Sing |
2014-12-07 | Remove get_optional_pkey_id() - it is a hack that existed due to GOST | Joel Sing |
2014-12-06 | Remove now bogus comment that got missed in the GOST commit. | Joel Sing |
2014-12-06 | Fix some horrible style(9) violations... | Joel Sing |
2014-11-18 | Update the GOST code in libssl, as contributed by Dmitry Eremin-Solenikov. | Miod Vallat |
2014-11-16 | Sort and group includes. | Joel Sing |
2014-11-08 | Clean up more SSLv2 remnants. | Joel Sing |
2014-11-02 | Remove remnants from RC2 and SEED - there are no longer any cipher suites | Joel Sing |
2014-10-15 | Add cipher aliases for DHE (the correct name for EDH) and ECDHE (the | Joel Sing |
2014-10-03 | Use string literals in printf style calls so gcc's -Wformat works. | Doug Hogan |
2014-09-19 | Add CHACHA20 as a cipher symmetric encryption alias. | Joel Sing |
2014-09-07 | Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them, | Joel Sing |
2014-07-12 | The correct name for EDH is DHE, likewise EECDH should be ECDHE. | Joel Sing |
2014-07-12 | Remove remnants from PSK, KRB5 and SRP. | Joel Sing |
2014-07-12 | Make disabling last cipher work. | Philip Guenther |
2014-07-11 | Remove the PSK code. We don't need to drag around this | Bob Beck |
2014-07-10 | Remove more compression tendrils. | Joel Sing |
2014-07-10 | Remove more compression related code. | Joel Sing |
2014-07-10 | Put back some parts of the public SSL API that should not have been | Joel Sing |
2014-07-10 | decompress libssl. ok beck jsing | Ted Unangst |
2014-07-09 | Clean up and simplify SSL_CIPHER_description by always using asprintf. If | Joel Sing |
2014-07-09 | tedu the SSL export cipher handling - since we do not have enabled export | Joel Sing |
2014-07-08 | Remove SSL_FIPS. | Joel Sing |
2014-06-18 | Use asprintf() instead of a fixed 128-byte size in SSL_CIPHER_description() | Miod Vallat |
2014-06-18 | In SSL_COMP_add_compression_method(), make sure error cases actually return | Miod Vallat |
2014-06-13 | Add ChaCha20-Poly1305 based ciphersuites. | Joel Sing |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-08 | Add an SSL_CIPHER_ALGORITHM2_AEAD flag that is used to mark a cipher as | Joel Sing |
2014-06-01 | Use C99 initialisers for cipher_aliases. This improves readability, | Joel Sing |
2014-05-30 | More KNF. | Joel Sing |
2014-05-29 | unidef DH, ECDH, and ECDSA. there's no purpose to a libssl without them. | Ted Unangst |
2014-05-29 | repair KNF indent | Theo de Raadt |
2014-05-27 | Wrap some long lines. | Joel Sing |
2014-05-27 | Remove MemCheck_{on,off} that escaped last time around. | Joel Sing |
2014-05-27 | More KNF. | Joel Sing |
2014-05-26 | Unchecked malloc() return value in SSL_COMP_add_compression_method(), in the | Miod Vallat |
2014-05-25 | Remove TLS_DEBUG, SSL_DEBUG, CIPHER_DEBUG and OPENSSL_RI_DEBUG. Much of | Joel Sing |
2014-05-25 | Turn off MemCheck_on and MemCheck_off. These calls are pointless since the | Joel Sing |
2014-05-25 | The ssl_ciper_get_evp() function is currently overloaded to also return the | Joel Sing |
2014-05-24 | In ssl_cipher_get_evp(), fix off-by-one in index validation before accessing | Miod Vallat |
2014-05-20 | KSSL is dead... nuke KSSL_DEBUG from orbit. | Joel Sing |
2014-05-05 | Remove SRP and Kerberos support from libssl. These are complex protocols | Ted Unangst |
2014-04-22 | switch to reallocarray | Ted Unangst |
2014-04-21 | use mallocarray(a,b) instead of malloc(a*b) | Theo de Raadt |
2014-04-21 | more malloc/realloc/calloc cleanups; ok beck kettenis | Theo de Raadt |
2014-04-20 | Use calloc(a,b) instead of malloc(a*b) + memset(a*b). I don't know if | Theo de Raadt |
2014-04-19 | More KNF and style consistency tweaks | Philip Guenther |