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