Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-09 | Switch to <endian.h> from <machine/endian.h> for better portability. | Brent Cook | |
ok tb@ | |||
2017-08-13 | move endian/word size checks from runtime to compile time | Brent Cook | |
ok guenther@ | |||
2016-11-04 | Replace all uses of magic numbers when operating on OPENSSL_ia32_P[] by | Miod Vallat | |
meaningful constants in a private header file, so that reviewers can actually get a chance to figure out what the code is attempting to do without knowing all cpuid bits. While there, turn it from an array of two 32-bit ints into a properly aligned 64-bit int. Use of OPENSSL_ia32_P is now restricted to the assembler parts. C code will now always use OPENSSL_cpu_caps() and check for the proper bits in the whole 64-bit word it returns. i386 tests and ok jsing@ | |||
2016-09-04 | Less S390. | Joel Sing | |
ok deraadt@ | |||
2016-09-04 | Less IA64. | Joel Sing | |
ok deraadt@ | |||
2015-10-21 | In the case where len is not a multiple of sizeof(RC4_CHUNK) the RC4 code | Joel Sing | |
will end up doing a read and write of up to 7 bytes beyond the specified length. This is effectively a non-issue since we read and write back the same data and due to alignment it is within a page boundary. Regardless, avoid this by removing the "special" handling for the remaining length and allow the standard (non-chunk) code to process the remaining bytes, which does not result in overrun. Reported by Pascal Cuoq <cuoq at trust-in-soft.com> - thanks! ok beck@ miod@ | |||
2015-10-20 | Lob a style(9) grenade in here. | Joel Sing | |
2015-02-10 | Remove old interesting but not useful content. | Joel Sing | |
ok miod@ | |||
2014-10-28 | deregister; no binary change | Jonathan Gray | |
ok jsing@ miod@ | |||
2014-07-12 | Remove private_{Camellia,RC4}_set_key FIPS indirection tentacles, as has been | Miod Vallat | |
done for other symmetric algorithms recently. | |||
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-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-09 | Remove leading underscore from _BYTE_ORDER and _{LITTLE,BIG}_ENDIAN, to be | Miod Vallat | |
more friendly to systems where the underscore flavours may be defined as empty. Found the hard way be bcook@; joint brainstrom with bcook beck and guenther | |||
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook | |
Also remove unused des_ver.h, which exports some of these strings, but is not installed. ok miod@ tedu@ | |||
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt | |
2014-06-11 | c-file-style hints, begone; ok beck | Theo de Raadt | |
2014-05-01 | Do not output SOM-specific directives. | Miod Vallat | |
2014-04-30 | First pass at removing win64 support from the assembly generating Perl | Joel Sing | |
scripts. We certainly do not need an identical copy of the win64 exception handler in each script (surely one copy would be sufficient). ok miod@ | |||
2014-04-27 | typo in comment | Miod Vallat | |
2014-04-23 | I'm glad to know that Ultrix CC has a bug optimizing switch() statements | Miod Vallat | |
lacking an explicit `case 0:' construct. But Ultrix has been dead for more than 15 years, really. Don't give it any reason to move out of its coffin. | |||
2014-04-23 | Figure out endianness at compile-time, using _BYTE_ORDER from | Miod Vallat | |
<machine/endian.h>, rather than writing 1 to a 32-bit variable and checking whether the first byte is nonzero. tweaks and ok matthew@; ok beck@ tedu@ | |||
2014-04-22 | Remove meat which either duplicates code found in apps/, or is only of value | Miod Vallat | |
for 20th century historians, and can be put in the Attic. | |||
2014-04-17 | OPENSSL_DECLARE_EXIT serves no purpose. | Theo de Raadt | |
2014-04-17 | unistd.h is always in the same place; no need to #include the result of | Theo de Raadt | |
a maze of conditional #define's | |||
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 | Moved to regress/lib/libcrypto. | Miod Vallat | |
2014-04-15 | remove pentium specific benchmark code | Jonathan Gray | |
ok miod@ | |||
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 | Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery. | Miod Vallat | |
2012-10-31 | On amd64 OPENSSL_cpuid_setup and OPENSSL_ia32cap_P are now hidden so we don't | Mark Kettenis | |
have to go through the PLT/GOT to get at them anymore. In fact going through the GOT now fails since we no longer have a GOT entry for OPENSSL_ia32cap_P. Fixes the problem spotted by jasper@ and sthen@. Based on a diff from mikeb@ who did most of the actual work of tracking down the issue. ok millert@, mikeb@ | |||
2012-10-13 | resolve conflicts | Damien Miller | |
2012-10-13 | import OpenSSL-1.0.1c | Damien Miller | |
2010-10-01 | resolve conflicts, fix local changes | Damien Miller | |
2010-10-01 | import OpenSSL-1.0.0a | Damien Miller | |
2009-01-09 | resolve conflicts | Damien Miller | |
2009-01-09 | import openssl-0.9.8j | Damien Miller | |
2008-09-19 | fix some cause of bad TEXTREL on i386 and amd64 | Otto Moerbeek | |
- global function calls in .init sections (diff makes them via PLT) - calls to global functions in aes-586.S (made static or local) - global variable accesses in rc4-x86_64.S (now made via GOT) from djm@large; ok miod@ | |||
2008-09-06 | resolve conflicts | Damien Miller | |
2006-06-27 | resolve conflicts | Damien Miller | |
2006-06-27 | import of openssl-0.9.7j | Damien Miller | |
2005-04-29 | resolve conflicts | Damien Miller | |
2005-04-29 | import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@ | Damien Miller | |
2004-04-08 | merge 0.9.7d | Markus Friedl | |
2003-05-12 | merge 0.9.7b with local changes; crank majors for libssl/libcrypto | Markus Friedl | |
2002-09-10 | merge openssl-0.9.7-beta3, tested on vax by miod@ | Markus Friedl | |
2002-09-04 | execute bourne shell scripts with 'sh' and not with $SHELL | Markus Friedl | |
2002-05-15 | OpenSSL 0.9.7 stable 2002 05 08 merge | Bob Beck | |
2001-06-22 | openssl-engine-0.9.6a merge | Bob Beck | |
2000-12-15 | openssl-engine0.9.6 merge | Bob Beck | |
Again, be sure to whack an old /usr/obj/lib/libssl if you are doing builds |