| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove the _shadow_ indirection, which is unnecessary in a world without | jsing | 2014-05-24 | 3 | -7/+4 |
* | KNF. | jsing | 2014-05-24 | 15 | -2218/+1913 |
* | More KNF. | jsing | 2014-05-24 | 1 | -2/+2 |
* | KNF. | jsing | 2014-05-24 | 4 | -91/+91 |
* | We have shared global variables - unifdef OPENSSL_EXPORT_VAR_AS_FUNCTION. | jsing | 2014-05-24 | 2 | -69/+0 |
* | Expand the OPENSSL_.*GLOBAL.* macros and stop including e_os2.h. | jsing | 2014-05-24 | 3 | -8/+7 |
* | Another e_os2.h -> opensslconf.h. | jsing | 2014-05-24 | 1 | -1/+3 |
* | e_os2.h is not needed here. | jsing | 2014-05-24 | 1 | -1/+1 |
* | Explicitly include <openssl/openssl.conf>. des.h still needs e_os2.h (at | jsing | 2014-05-24 | 1 | -2/+3 |
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 26 | -28/+49 |
* | Expand OPENSSL_{GLOBAL,EXTERN} macros that I missed last time around, | jsing | 2014-05-24 | 2 | -2/+2 |
* | Spell ssize_t correctly (the incorrect spelling is ossl_ssize_t). | jsing | 2014-05-24 | 4 | -15/+15 |
* | No OPENSSL_SYS_WINDOWS wanted. | jsing | 2014-05-24 | 1 | -3/+0 |
* | Take an axe to rc5speed.c - strip out everything that is for other | jsing | 2014-05-23 | 1 | -84/+9 |
* | We have stdio and are not WIN16. | jsing | 2014-05-23 | 1 | -2/+0 |
* | Not OPENSSL_SYS_SUNOS. | jsing | 2014-05-23 | 1 | -3/+0 |
* | Replace (sometimes conditional) use of alloca with malloc, and clearing | miod | 2014-05-23 | 2 | -39/+16 |
* | don't deprecate until at least the base src tree is clean. | tedu | 2014-05-23 | 1 | -12/+8 |
* | Mark the malloc wrapper functions as deprecated so warnings will | beck | 2014-05-22 | 1 | -8/+12 |
* | Convert OPENSSL_malloc stuff back to intrinsics, a few were missed | beck | 2014-05-22 | 3 | -6/+6 |
* | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | miod | 2014-05-22 | 25 | -81/+42 |
* | Expand the OPENSSL_{GLOBAL,EXPORT,IMPORT,EXTERN} macros - this rids the | jsing | 2014-05-22 | 7 | -22/+20 |
* | Hello? Yes, you're speaking with OPENSSL_SYS_UNIX. | jsing | 2014-05-22 | 1 | -28/+0 |
* | mark BIO_snprintf as deprecated, so warnings will be generated for it's | beck | 2014-05-22 | 1 | -2/+2 |
* | KNF. | jsing | 2014-05-22 | 3 | -171/+154 |
* | No uses of UTF8_{getc,putc}() in ports, so remove them from the public header. | guenther | 2014-05-22 | 2 | -9/+8 |
* | Bring UTF8_{getc,putc} up-to-date: it's been a decade since 5- and 6-byte | guenther | 2014-05-20 | 4 | -93/+88 |
* | If you need to allocate `a + b' bytes of memory, then don't allocate `a + b*2', | miod | 2014-05-18 | 3 | -6/+6 |
* | Make sure UTF8_getc() is invoked with the proper buffer size. | miod | 2014-05-18 | 1 | -2/+2 |
* | Plug memory leaks upon error in OCSP_url_svcloc_new(). | miod | 2014-05-18 | 1 | -6/+9 |
* | In OCSP_sendreq_bio(), cope with OCSP_sendreq_new() returning NULL. | miod | 2014-05-18 | 1 | -4/+6 |
* | More KNF. | jsing | 2014-05-18 | 10 | -193/+208 |
* | does sunos not have memmove? sorry, i guess sunos will not have libressl. | tedu | 2014-05-17 | 1 | -21/+3 |
* | unchecked malloc() return value in OCSP_sendreq_new(). | miod | 2014-05-17 | 1 | -0/+2 |
* | KNF | miod | 2014-05-17 | 8 | -1274/+1332 |
* | simple reallocarray to check multiplies. ok guenther | tedu | 2014-05-17 | 1 | -6/+4 |
* | no no md2 | tedu | 2014-05-17 | 3 | -9/+0 |
* | no no seed | tedu | 2014-05-17 | 2 | -17/+0 |
* | switch RSA key generation default to 2048 bits (matching ssh); ok miod@ | sthen | 2014-05-17 | 1 | -1/+1 |
* | When OPENSSL_LOAD_CONF was added it ended up with more #if 0 code, | jsing | 2014-05-16 | 4 | -96/+16 |
* | Fix memory leaks upon failure. | miod | 2014-05-15 | 2 | -27/+39 |
* | Replace ASN1_GENERALIZEDTIME_adj(), ASN1_UTCTIME_adj() and | miod | 2014-05-15 | 3 | -25/+73 |
* | More KNF. | jsing | 2014-05-15 | 4 | -7/+7 |
* | Use C99 initialisers for the AEAD struct. | jsing | 2014-05-15 | 1 | -9/+9 |
* | KNF. | jsing | 2014-05-15 | 1 | -70/+67 |
* | Add a ChaCha20-Poly1305 AEAD EVP implementation to libcrypto, from Adam | jsing | 2014-05-15 | 4 | -2/+274 |
* | KNF. | jsing | 2014-05-15 | 5 | -283/+343 |
* | Add an AEAD EVP interface to libcrypto, along with AES-GCM AEAD | jsing | 2014-05-15 | 6 | -35/+551 |
* | Stop being a dummy... presumably these are left overs from pedantic mode | jsing | 2014-05-15 | 9 | -22/+2 |
* | Add poly1305 to libcrypto utilising Andrew Moon's public domain | jsing | 2014-05-14 | 4 | -1/+354 |