Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove #error if OPENSSL_NO_FOO is defined | tb | 2025-01-25 | 1 | -5/+1 |
| | | | | discussed with jsing | ||||
* | Hide symbols in Blowfish | joshua | 2024-03-29 | 1 | -1/+8 |
| | | | | ok jsing tb | ||||
* | Unifdef BF_PTR2. | jsing | 2024-03-27 | 2 | -95/+4 |
| | | | | | | This removes the unused Intel special version of BF_ENC(). ok tb@ | ||||
* | Remove unused c2l/c2ln/l2c/l2cn macros. | jsing | 2024-03-27 | 1 | -47/+3 |
| | |||||
* | Consolidate blowfish code. | jsing | 2024-03-27 | 5 | -633/+379 |
| | | | | Requested by tb@ | ||||
* | Remove now unused files. | jsing | 2024-03-27 | 2 | -274/+0 |
| | |||||
* | Remove more *_options() stuff | tb | 2023-07-31 | 1 | -2/+1 |
| | | | | | | | The public symbols were removed. Some prototypes and in the case of DES even the implementation remained. ok jsing | ||||
* | Remove various ${thing}_options | tb | 2023-07-28 | 1 | -13/+1 |
| | | | | | | | | | | Various, ancient ciphers exposed some of their innards via an _options() API. Apart from openssl version/speed, only some lua thingie in nmap ever looked at these. Go figure. hppa testing by miod, i386 testing by sthen. Thanks! ok jsing | ||||
* | Make internal header file names consistent | tb | 2022-11-26 | 7 | -13/+13 |
| | | | | | | | | | | | | | | | | Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names used for internal headers. Move all these headers we inherited from OpenSSL to *_local.h, reserving the name *_internal.h for our own code. Similarly, move dtls_locl.h and ssl_locl.h to dtls_local and ssl_local.h. constant_time_locl.h is moved to constant_time.h since it's special. Adjust all .c files in libcrypto, libssl and regress. The diff is mechanical with the exception of tls13_quic.c, where #include <ssl_locl.h> was fixed manually. discussed with jsing, no objection bcook | ||||
* | Use named initialisers. | jsing | 2022-11-11 | 1 | -3/+4 |
| | | | | Requested by tb@ | ||||
* | Merge bf_pi.h into bf_skey.c. | jsing | 2022-11-11 | 2 | -330/+268 |
| | | | | | | | There's not much point having a static table in a header file that is only included in one source file. Discussed with tb@ | ||||
* | Tidy includes, fix comment style and mop up some blank lines. | jsing | 2022-11-11 | 6 | -17/+22 |
| | |||||
* | Whack blowfish with a style(9) bat. | jsing | 2022-11-11 | 9 | -740/+741 |
| | |||||
* | Remove useless ancient files. | jsing | 2022-11-06 | 4 | -74/+0 |
| | | | | ok beck@ tb@ | ||||
* | KNF for BF_KEY | tb | 2021-11-30 | 1 | -4/+3 |
| | |||||
* | Explicitly export a list of symbols from libcrypto. | jsing | 2016-12-21 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | Move the "internal" BN functions from bn.h to bn_lcl.h and stop exporting the bn_* symbols. These are documented as only being intended for internal use, so why they were placed in a public header is beyond me... This hides 363 previously exported symbols, most of which exist in headers that are not installed and were never intended to be public. This also removes a few crusty old things that should have died long ago (like _ossl_old_des_read_pw). But don't worry... there are still 3451 symbols exported from the library. With input and testing from inoguchi@. ok beck@ inoguchi@ | ||||
* | Remove horribly old and outdated `documentation' for the assembly code. | miod | 2015-09-12 | 2 | -137/+0 |
| | |||||
* | deregister; no binary change | jsg | 2014-10-28 | 4 | -23/+23 |
| | | | | ok jsing@ miod@ | ||||
* | Remove bogus preprocessor statements trying to pick the largest integer | miod | 2014-07-10 | 1 | -8/+1 |
| | | | | | | | | type for BF_LONG, MD[45]_LONG and SHA_LONG. First, the preprocessor symbols they check for a 64-bit system is __ILP64__ which no sane system provides; second, on the platforms which have assembler code to speed things up, the assembler code assumes a 32-bit type will be used. | ||||
* | remove unused, private version strings except SSL_version_str | bcook | 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 | deraadt | 2014-06-12 | 9 | -9/+9 |
| | |||||
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 1 | -1/+1 |
| | | | | | | | 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@ | ||||
* | Forgotten during latest spring cleaning of unreferenced bits. | miod | 2014-04-23 | 1 | -276/+0 |
| | |||||
* | Remove meat which either duplicates code found in apps/, or is only of value | miod | 2014-04-22 | 1 | -330/+0 |
| | | | | for 20th century historians, and can be put in the Attic. | ||||
* | OPENSSL_DECLARE_EXIT serves no purpose. | deraadt | 2014-04-17 | 2 | -2/+0 |
| | |||||
* | unistd.h is always in the same place; no need to #include the result of | deraadt | 2014-04-17 | 2 | -2/+2 |
| | | | | a maze of conditional #define's | ||||
* | Remove _CRAY references. Note that this pleads for the use of <stdint.h> | miod | 2014-04-16 | 1 | -8/+1 |
| | | | | | fixed-width types instead of choosing int or long depending upon what we think the architecture support. | ||||
* | we don't use these files for building | tedu | 2014-04-15 | 1 | -86/+0 |
| | |||||
* | remove FIPS mode support. people who require FIPS can buy something that | tedu | 2014-04-15 | 2 | -10/+0 |
| | | | | | meets their needs, but dumping it in here only penalizes the rest of us. ok beck deraadt | ||||
* | Moved to regress/lib/libcrypto. | miod | 2014-04-15 | 1 | -529/+0 |
| | |||||
* | Send the rotIBM stream cipher (ebcdic) to Valhalla to party for eternity | beck | 2014-04-15 | 1 | -11/+0 |
| | | | | | with the bearded ones... some API's that nobody should be using will dissapear with this commit. | ||||
* | remove pentium specific benchmark code | jsg | 2014-04-15 | 1 | -67/+0 |
| | | | | ok miod@ | ||||
* | remove auto-generated dependencies from the old unused build system, so | deraadt | 2014-04-14 | 1 | -15/+0 |
| | | | | | that it is easier to find code pieces. They are getting in the way. ok miod | ||||
* | resolve conflicts | djm | 2012-10-13 | 2 | -1/+11 |
| | |||||
* | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2012-10-13 | 1 | -2/+5 |
|\ | | | | | branch. | ||||
| * | import OpenSSL-1.0.1c | djm | 2012-10-13 | 1 | -2/+5 |
| | | |||||
* | | resolve conflicts, fix local changes | djm | 2010-10-01 | 4 | -126/+5 |
| | | |||||
* | | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2010-10-01 | 1 | -18/+5 |
|\| | | | | | branch. | ||||
| * | import OpenSSL-1.0.0a | djm | 2010-10-01 | 1 | -18/+5 |
| | | |||||
* | | resolve conflicts | djm | 2009-01-09 | 2 | -2/+9 |
| | | |||||
* | | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2009-01-09 | 1 | -3/+7 |
|\| | | | | | branch. | ||||
| * | import openssl-0.9.8j | djm | 2009-01-09 | 1 | -3/+7 |
| | | |||||
* | | resolve conflicts | djm | 2008-09-06 | 7 | -10/+15 |
| | | |||||
* | | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2008-09-06 | 1 | -27/+18 |
|\| | | | | | branch. | ||||
| * | import of OpenSSL 0.9.8h | djm | 2008-09-06 | 4 | -27/+28 |
| | | |||||
* | | resolve conflicts | djm | 2006-06-27 | 1 | -0/+1 |
| | | |||||
* | | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2006-06-27 | 1 | -5/+5 |
|\| | | | | | branch. | ||||
| * | import of openssl-0.9.7j | djm | 2006-06-27 | 1 | -5/+5 |
| | | |||||
* | | resolve conflicts | djm | 2005-04-29 | 2 | -2/+6 |
| | | |||||
* | | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2005-04-29 | 1 | -0/+116 |
|\| | | | | | branch. |