Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-03 | KNF: move two opening curly braces of function bodies to their own lines | Theo Buehler | |
2018-03-17 | Bring in compatibility for OpenSSL 1.1 style init functions. | Bob Beck | |
This adds OPENSSL_init_crypto and OPENSSL_init_ssl, as well thread safety modifications for the existing LibreSSL init functions. The initialization routines are called automatically by the normal entry points into the library, as in newer OpenSSL ok jsing@, nits by tb@ and deraadt@ | |||
2017-02-20 | Mark ERR_add_error_data and ERR_add_error_vdata as not for internal use, | Bob Beck | |
and document ERR_asprintf_error_data as their replacement. ok jsing@, ingo@ | |||
2017-02-07 | Revert previous; the implementation is incorrect since it assumes that the | Joel Sing | |
provided error code matches the error that is currently on the top of the error stack. | |||
2017-02-07 | Add file and line to the LibreSSL error strings sine we are no longer in | Bob Beck | |
1989, VMS, or MS/DOS and we all run Brobdingnagian C compilers that have can now be counted on to achieve this level of sophistication nearly everywhere. ok jsing@ | |||
2017-01-29 | Send the function codes from the error functions to the bit bucket, | Bob Beck | |
as was done earlier in libssl. Thanks inoguchi@ for noticing libssl had more reacharounds into this. ok jsing@ inoguchi@ | |||
2017-01-26 | Hide SSLerr() under #ifndef LIBRESSL_INTERNAL since we shouldn't be | Bob Beck | |
using it anymore ok jsing@ | |||
2016-10-19 | unifdef OPENSSL_NO_CMS | Joel Sing | |
2015-02-11 | Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment. | Bob Beck | |
2015-02-11 | get rid of OPENSSL_NO_CMS code we do not use. | Bob Beck | |
ok miod@ | |||
2015-02-11 | get rid of OPENSSL_NO_COMP code we don't use. | Bob Beck | |
jajaja miod@ | |||
2014-11-09 | GOST crypto algorithms (well, most of them), ported from the removed GOST | Miod Vallat | |
engine to regular EVP citizens, contributed by Dmitry Eremin-Solenikov; libcrypto bits only for now. This is a verbatim import of Dmitry's work, and does not compile in this state; the forthcoming commits will address these issues. None of the GOST code is enabled in libcrypto yet, for it still gets compiled with OPENSSL_NO_GOST defined. However, the public header gost.h will be installed. | |||
2014-10-18 | Sort/group includes. | Joel Sing | |
2014-10-05 | compile with c89 (code / decl ordering); from Joakim.Tjernlund@transmode.se | Theo de Raadt | |
ok miod | |||
2014-08-24 | constify strerror return value | Brent Cook | |
There is no intention to modify the string returned by strerror and doing so is forbidden by the standard. from Jonas 'Sortie' Termansen ok tedu@ deraadt@ | |||
2014-07-11 | Revert change that snuck into previous commit. | Joel Sing | |
2014-07-11 | Only import cryptlib.h in the four source files that actually need it. | Joel Sing | |
Remove the openssl public includes from cryptlib.h and add a small number of includes into the source files that actually need them. While here, also sort/group/tidy the includes. ok beck@ miod@ | |||
2014-07-11 | Remove JPAKE remnants - there is no jpake.h, so if OPENSSL_NO_JPAKE was | Joel Sing | |
removed from opensslconf.h, this would no longer compile. | |||
2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references | Joel Sing | |
an OPENSSL_NO_* define. This avoids relying on something else pulling it in for us, plus it fixes several cases where the #ifndef OPENSSL_NO_XYZ is never going to do anything, since OPENSSL_NO_XYZ will never defined, due to the fact that opensslconf.h has not been included. This also includes some miscellaneous sorting/tidying of headers. | |||
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing | |
are needed in the source files that actually require them. ok beck@ miod@ | |||
2014-07-08 | We do not care about broken Borland C pre-processors. | Joel Sing | |
ok beck@ deraadt@ | |||
2014-06-27 | save_errno botch; spotted by miod | Theo de Raadt | |
2014-06-27 | hand-KNF the remaining bits | Theo de Raadt | |
2014-06-26 | save errno in ERR_put_error(), so that SYSerr doesn't have any accidental | Theo de Raadt | |
cases where errno can be trashed. ok jsing | |||
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt | |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt | |
ok miod | |||
2014-05-29 | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | Bob Beck | |
ok to firebomb from tedu@ | |||
2014-05-24 | Almost nothing actually needs to include <openssl/e_os2.h>, however by | Joel Sing | |
including it they get <openssl/opensslconf.h>. So instead of pulling in <openssl/e_os2.h>, just pull in <openssl/opensslconf.h>. "go ahead" miod@ | |||
2014-05-24 | No OPENSSL_SYS_WINDOWS wanted. | Joel Sing | |
ok miod@ | |||
2014-04-24 | add ERR_asprintf_error_data, A tool to be used to get rid of the far too | Bob Beck | |
frequent construct of 30 lines of pointer and strlcat insanity followed by an ERR_add_error_data. I will sweep through here like a chubby mongol horde in the next few days pillaging crappy ERR_add_error_data's. Oh and while we're at it fix the nasty vdata function to use something less hard on the eyes. ok jsing@ | |||
2014-04-21 | KNF. | Joel Sing | |
2014-04-20 | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | Philip Guenther | |
APIs that pass times as longs will have to change at some point... Bump major on both libcrypto and libssl. ok tedu@ | |||
2014-04-20 | Restore beck's rev 1.9: snprintf() was reviewed | Philip Guenther | |
2014-04-19 | We'll interpret a (void) cast on snprintf() to mean it's been verified that | Philip Guenther | |
truncation is either desirable, not an issue, or is detected and handled later ok deraadt@ | |||
2014-04-19 | use intrinsic strlcpy and strlcat everywhere so we only have one set of | Bob Beck | |
funcitons to check for incorrect use. keep BUF_strlcpy and BUF_strlcat for API comptibility only. ok tedu@ | |||
2014-04-18 | Unsurprisingly, since <unistd.h> was so darn hard to find for OpenSSL developers | Bob Beck | |
they had resorted to manually protyping read(2) instead of incredible amount of preprocessor wizardry needed to find the ever illusive <unistd.h>. Let's just include <unistd.h> and we don't need to do this.. While we're at it flense out _OSD_POSIX and __DGJPP__ cruft. ok krw@ | |||
2014-04-17 | kill REF_PRINT/REF_CHECK debugging framework noone would use | Theo de Raadt | |
ok miod | |||
2014-04-17 | Change library to use intrinsic memory allocation functions instead of | Bob Beck | |
OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free | |||
2014-04-16 | Clean up dangerous strncpy use. This included a use where the resulting | Bob Beck | |
string was potentially not nul terminated and a place where malloc return was unchecked. while we're at it remove dummytest.c ok miod@ | |||
2014-04-15 | we don't use these files for building | Ted Unangst | |
2014-04-15 | remove FIPS mode support. people who require FIPS can buy something that | Ted Unangst | |
meets their needs, but dumping it in here only penalizes the rest of us. ok beck deraadt | |||
2014-04-15 | Part 1 of eliminating BIO_snprintf(). This fixes mechanical conversions | Bob Beck | |
where the return value is ignored changing to (void) snprintf. ok deraadt@ | |||
2014-04-14 | remove auto-generated dependencies from the old unused build system, so | Theo de Raadt | |
that it is easier to find code pieces. They are getting in the way. ok miod | |||
2014-04-13 | Remove various horrible socket syscall wrappers, especially SHUTDOWN* | Theo de Raadt | |
which did shutdown + close, all nasty and surprising. Use the raw syscalls that everyone knows the behaviour of. ok beck matthew | |||
2014-04-13 | Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery. | Miod Vallat | |
2012-10-13 | resolve conflicts | Damien Miller | |
2010-10-01 | resolve conflicts, fix local changes | Damien Miller | |
2009-01-09 | resolve conflicts | Damien Miller | |
2009-01-09 | import openssl-0.9.8j | Damien Miller | |
2009-01-05 | update to openssl-0.9.8i; tested by several, especially krw@ | Damien Miller | |