summaryrefslogtreecommitdiff
path: root/src/lib/libssl (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | more cruftmarkus2002-09-042-4/+0
| |
* | more cruft.markus2002-09-049-446/+0
| |
* | sync formatting with 0.9.7markus2002-09-041-2/+1
| |
* | no need to set $SHELLmarkus2002-09-041-1/+1
| |
* | execute bourne shell scripts with 'sh' and not with $SHELLmarkus2002-09-0446-48/+48
| |
* | sync tests with 0.9.7-beta1markus2002-09-0312-46/+138
| |
* | remove whitespace changes (keep diffs to 0.9.7-beta1 minimal)markus2002-09-035-5/+4
| |
* | sync these files with openssl-0.9.7-beta1, toomarkus2002-09-0315-177/+359
| |
* | build OpenSSL without symlink trees:markus2002-09-0314-1065/+2806
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * manpage related things moved to src/libssl/man/Makefile * there are now 3 obj directories src/libssl/{crypto,ssl,man}/ instead of one single src/libssl/obj * instead of running Configure (with generates lots of symlinks, and opensslconf.h) this patch stores pre-computed opensslconf.h files in src/libssl/crypto/arch * requires a make includes before the library can be built * libssl and libcrypto can be build separately (e.g. cd src/libssl/ssl && make obj && make) * make depend is now supported * no more symlink trees tested by miod@ and fries@
* | evp_test.o should not be included in libcrypto (it defines _main !!)markus2002-09-031-1/+1
| | | | | | | | no version change for the shared libs; ok deraadt@
* | not part of OpenSSL 0.9.7markus2002-09-033-39/+0
| |
* | unused files, perl subdir not part of OpenSSL 0.9.7markus2002-09-0314-2344/+0
| |
* | unused files, not part of OpenSSL 0.9.7markus2002-09-0338-9120/+0
| |
* | ssl headers are already installed for libsslmarkus2002-08-311-2/+2
| |
* | don't install e_os.h (it's private)markus2002-08-311-16/+1
| | | | | | | | remove duplicate headers, trailing whitespace
* | don't install private headersmarkus2002-08-311-6/+1
| | | | | | | | remove trailing whitespace
* | protect <openssl/krb5_asn.h> with OPENSSL_NO_KRB5markus2002-08-302-0/+4
| |
* | make clean should not depend on prereq; ok fries@markus2002-08-301-2/+2
| |
* | do not modify input files, allows ro source builds; tested by fries@markus2002-08-301-6/+7
| |
* | remove generated files and generated symlinks (in make clean)markus2002-08-303-388/+85
| |
* | Better fixes from openssl cvs; from markus@miod2002-08-051-3/+4
| |
* | typo; from openssl cvsmarkus2002-08-021-1/+1
| |
* | sync with http://www.openssl.org/news/patch_20020730_0_9_7.txtmarkus2002-07-306-17/+39
| | | | | | | | | | (adds fix for unused kerberos and engine code, and some more assertions, as well as a 64bit integer string fix for conf_mod.c)
* | apply patches from OpenSSL Security Advisory [30 July 2002],markus2002-07-3025-8/+124
| | | | | | | | http://marc.theaimsgroup.com/?l=openssl-dev&m=102802395104110&w=2
* | remove #define crypt DES_crypt; ok deraadt@markus2002-07-191-4/+0
| |
* | use /bin/sh for bourne shell scripts (instead of the $SHELL env var).markus2002-07-181-1/+1
| | | | | | | | ok deraadt@
* | correct memset arguments; from Moritz Jodeit <moritz@jodeit.org> via PR/2822.fgsch2002-07-161-2/+2
| |
* | cleanderaadt2002-07-111-123/+59
| |
* | Disable support for the other hardware accelerators. No need to crank thederaadt2002-07-111-5/+8
| | | | | | | | major because these interfaces are really not exported (or used).
* | enviroment -> environmentjufi2002-07-072-3/+3
| |
* | remove support for RC4 via /dev/crypto, suggested by Niels; ok provos@markus2002-06-201-18/+0
| |
* | do not syslog from libraries!deraadt2002-06-191-10/+1
| |
* | KNF, -Wall, and other cleanups. still does not failover 100% correctlyderaadt2002-06-191-22/+52
| | | | | | | | for operations when /dev/crypto is missing, for instance in chroot
* | stupid stupid bug ja ja ja jaderaadt2002-06-191-1/+1
| |
* | unbreak sshd with privsep: open /dev/crypto, keep fd, and callmarkus2002-06-181-5/+20
| | | | | | | | CRIOGET per EVP_Init(); ok niklas@, miod@
* | per-evp state is now sizeof(struct dev_crypto_state) instead sizeof(struct ↵markus2002-06-181-6/+6
| | | | | | | | session_op)
* | keep a FD per EVP_init, use a global FD for all asym operations;markus2002-06-131-83/+85
| | | | | | | | ok beck@
* | KNFderaadt2002-06-111-19/+16
| |
* | add "dsa_dsa_mod_exp" - This mimics the software dsa_mod_exp funtionbeck2002-06-111-3/+37
| | | | | | | | | | | | | | using two mod_exp operations - otherwise we use BN_mod_exp2 entirely in software, which makes dsa verifications glacially slow while signatures, (which use mod_exp) are fast. This lets cards that can only do bn_mod_exp decently offload most of dsa.
* | Make DSA work now... at least for things that can do bn_mod_exp.beck2002-06-111-7/+4
| |
* | Make asymmetric crypto work in userlandbeck2002-06-111-36/+114
| | | | | | | | | | this will only be used if you both have a card that supports it with a working driver and you set sysctl kern.userasymcrypto=1
* | Pass the right arguments for RSA, DSA, and modexp operations. Fix theangelos2002-06-091-30/+37
| | | | | | | | translation between the crypto framework's format and the BN structure.
* | After much horrible and painful slogging through asn1 code,beck2002-06-081-0/+1
| | | | | | | | | | | | | | | | | | | | this fixes the source of connection problems with ssl/tls connections between sparc64 and other things. The punchline, we just found a bug in floating point emulation on sparc64 when this script produces off-by-one output on sparc64. This fix is annoyingly easy for the effort expended.
* | do not propose IDEA cipher on SSL connection. tested by beckitojun2002-06-075-0/+18
| | | | | | | | noticed by Sverre Froyen <sverre@viewmark.com>
* | typo - I am a luser and a moron.beck2002-06-071-2/+2
| |
* | Merge OpenSSL 0.9.7-stable-20020605,beck2002-06-0762-2554/+710
| | | | | | | | correctly autogenerate obj_mac.h
* | sig_atomic_t type must also be volatilederaadt2002-06-031-1/+1
| |
* | we do not need this to be Makefile.bsd-wrapperderaadt2002-06-012-979/+976
| |
* | do not assume scripts are executablederaadt2002-05-256-6/+6
| |
* | Merge openssl-0.9.7-stable-SNAP-20020519beck2002-05-2125-199/+141
| |