Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the libssl/src directory | 2016-09-03 | 10 | -3249/+0 | |
| | |||||
* | In the case where len is not a multiple of sizeof(RC4_CHUNK) the RC4 code | 2015-10-21 | 1 | -63/+1 | |
| | | | | | | | | | | | | | | 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@ | ||||
* | Lob a style(9) grenade in here. | 2015-10-20 | 3 | -172/+185 | |
| | |||||
* | Remove old interesting but not useful content. | 2015-02-10 | 1 | -278/+0 | |
| | | | | ok miod@ | ||||
* | deregister; no binary change | 2014-10-28 | 2 | -7/+7 | |
| | | | | ok jsing@ miod@ | ||||
* | Remove private_{Camellia,RC4}_set_key FIPS indirection tentacles, as has been | 2014-07-12 | 6 | -73/+14 | |
| | | | | done for other symmetric algorithms recently. | ||||
* | Only import cryptlib.h in the four source files that actually need it. | 2014-07-11 | 1 | -3/+1 | |
| | | | | | | | | 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@ | ||||
* | Explicitly include <openssl/opensslconf.h> in every file that references | 2014-07-10 | 1 | -1/+2 | |
| | | | | | | | | | 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. | ||||
* | Remove leading underscore from _BYTE_ORDER and _{LITTLE,BIG}_ENDIAN, to be | 2014-07-09 | 1 | -2/+2 | |
| | | | | | 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 | ||||
* | remove unused, private version strings except SSL_version_str | 2014-07-09 | 1 | -3/+1 | |
| | | | | | | Also remove unused des_ver.h, which exports some of these strings, but is not installed. ok miod@ tedu@ | ||||
* | tags as requested by miod and tedu | 2014-06-12 | 5 | -4/+6 | |
| | |||||
* | c-file-style hints, begone; ok beck | 2014-06-11 | 1 | -1/+1 | |
| | |||||
* | Do not output SOM-specific directives. | 2014-05-01 | 1 | -0/+6 | |
| | |||||
* | First pass at removing win64 support from the assembly generating Perl | 2014-04-30 | 2 | -241/+0 | |
| | | | | | | | 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@ | ||||
* | typo in comment | 2014-04-27 | 1 | -1/+1 | |
| | |||||
* | I'm glad to know that Ultrix CC has a bug optimizing switch() statements | 2014-04-23 | 1 | -10/+0 | |
| | | | | | 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. | ||||
* | Figure out endianness at compile-time, using _BYTE_ORDER from | 2014-04-23 | 1 | -7/+3 | |
| | | | | | | | <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@ | ||||
* | Remove meat which either duplicates code found in apps/, or is only of value | 2014-04-22 | 2 | -445/+0 | |
| | | | | for 20th century historians, and can be put in the Attic. | ||||
* | OPENSSL_DECLARE_EXIT serves no purpose. | 2014-04-17 | 1 | -1/+0 | |
| | |||||
* | unistd.h is always in the same place; no need to #include the result of | 2014-04-17 | 1 | -1/+1 | |
| | | | | a maze of conditional #define's | ||||
* | we don't use these files for building | 2014-04-15 | 1 | -103/+0 | |
| | |||||
* | remove FIPS mode support. people who require FIPS can buy something that | 2014-04-15 | 1 | -3/+0 | |
| | | | | | meets their needs, but dumping it in here only penalizes the rest of us. ok beck deraadt | ||||
* | Moved to regress/lib/libcrypto. | 2014-04-15 | 1 | -242/+0 | |
| | |||||
* | remove pentium specific benchmark code | 2014-04-15 | 1 | -73/+0 | |
| | | | | ok miod@ | ||||
* | remove auto-generated dependencies from the old unused build system, so | 2014-04-14 | 1 | -22/+0 | |
| | | | | | that it is easier to find code pieces. They are getting in the way. ok miod | ||||
* | Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery. | 2014-04-13 | 2 | -1/+8 | |
| | |||||
* | Import OpenSSL 1.0.1g | 2014-04-13 | 2 | -2/+4 | |
| | |||||
* | On amd64 OPENSSL_cpuid_setup and OPENSSL_ia32cap_P are now hidden so we don't | 2012-10-31 | 1 | -2/+2 | |
| | | | | | | | | | | 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@ | ||||
* | resolve conflicts | 2012-10-13 | 4 | -105/+384 | |
| | |||||
* | import OpenSSL-1.0.1c | 2012-10-13 | 5 | -13/+1058 | |
| | |||||
* | resolve conflicts, fix local changes | 2010-10-01 | 10 | -832/+424 | |
| | |||||
* | import OpenSSL-1.0.0a | 2010-10-01 | 3 | -27/+977 | |
| | |||||
* | resolve conflicts | 2009-01-09 | 3 | -1/+20 | |
| | |||||
* | import openssl-0.9.8j | 2009-01-09 | 2 | -4/+89 | |
| | |||||
* | fix some cause of bad TEXTREL on i386 and amd64 | 2008-09-19 | 1 | -3/+2 | |
| | | | | | | | - 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@ | ||||
* | resolve conflicts | 2008-09-06 | 7 | -34/+99 | |
| | |||||
* | import of OpenSSL 0.9.8h | 2008-09-06 | 3 | -77/+277 | |
| | |||||
* | resolve conflicts | 2006-06-27 | 3 | -12/+1 | |
| | |||||
* | import of openssl-0.9.7j | 2006-06-27 | 3 | -35/+193 | |
| | |||||
* | resolve conflicts | 2005-04-29 | 4 | -30/+103 | |
| | |||||
* | import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@ | 2005-04-29 | 4 | -0/+508 | |
| | |||||
* | merge 0.9.7d | 2004-04-08 | 1 | -0/+1 | |
| | |||||
* | merge 0.9.7b with local changes; crank majors for libssl/libcrypto | 2003-05-12 | 3 | -13/+9 | |
| | |||||
* | merge openssl-0.9.7-beta3, tested on vax by miod@ | 2002-09-10 | 1 | -1/+1 | |
| | |||||
* | execute bourne shell scripts with 'sh' and not with $SHELL | 2002-09-04 | 1 | -1/+1 | |
| | |||||
* | OpenSSL 0.9.7 stable 2002 05 08 merge | 2002-05-15 | 5 | -12/+12 | |
| | |||||
* | openssl-engine-0.9.6a merge | 2001-06-22 | 1 | -1/+2 | |
| | |||||
* | openssl-engine0.9.6 merge | 2000-12-15 | 2 | -0/+0 | |
| | | | | Again, be sure to whack an old /usr/obj/lib/libssl if you are doing builds | ||||
* | openssl-engine-0.9.6 merge | 2000-12-15 | 1 | -4/+4 | |
| | |||||
* | use %s with fprintf | 2000-07-07 | 1 | -1/+1 | |
| |