summaryrefslogtreecommitdiffstats
path: root/crypto/openssl
Commit message (Collapse)AuthorAgeFilesLines
* Resolve conflictskris2001-07-194-7/+9
|
* This commit was generated by cvs2svn to compensate for changes in r79998,kris2001-07-1992-1445/+2518
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of OpenSSL 0.9.6bkris2001-07-1997-1460/+2538
| |
* | Resolve conflictskris2001-05-206-26/+48
| |
* | This commit was generated by cvs2svn to compensate for changes in r76866,kris2001-05-20116-815/+1893
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of OpenSSL 0.9.6akris2001-05-20122-841/+1941
| |
* | Resolve conflictskris2001-02-186-72/+247
| |
* | This commit was generated by cvs2svn to compensate for changes in r72613,kris2001-02-18147-286/+5416
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of OpenSSL 0.9.6-STABLE snapshot dated 2001-02-10kris2001-02-18154-359/+5666
| |
* | Update list of files to remove prior to importkris2000-11-131-20/+34
| |
* | Resolve conflicts, and garbage collect some local changes that are nokris2000-11-1320-269/+616
| | | | | | | | longer required
* | This commit was generated by cvs2svn to compensate for changes in r68651,kris2000-11-13576-11608/+38575
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of OpenSSL 0.9.6kris2000-11-13598-11885/+39181
| |
* | Add a CVS Id tagdougb2000-10-291-0/+1
| |
* | Nuke RSAREF support from orbit.kris2000-09-108-1155/+0
| | | | | | | | It's the only way to be sure.
* | MFI. This is a documentation-only, diffreducing patch, that ifmarkm2000-06-241-0/+6
| | | | | | | | | | invoked will cause breakage. US Users - DO NOT try to turn on IDEA - the sources are not included.
* | Grrr. I hate CVS. These were supposed to be committed when I did themarkm2000-06-1911-0/+1246
| | | | | | | | | | | | IDEA fix earlier today. Bring back IDEA from the dead (but not compiled by default).
* | Re-add IDEA. This is not actually built unless asked for by the user.markm2000-06-192-0/+513
| | | | | | | | (To avoid patent hassles).
* | MFF: catch up with FreeFallmarkm2000-04-191-90/+0
| |
* | If stderr is closed, report the error message about missing librarieskris2000-04-182-11/+31
| | | | | | | | | | | | via syslog instead. Reviewed by: jkh
* | Internat diff reducer.markm2000-04-161-0/+1
| |
* | This commit was generated by cvs2svn to compensate for changes in r59281,markm2000-04-161-0/+90
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of OpenSSL v0.9.5amarkm2000-04-164-5/+97
| |
* | Resolve conflicts.kris2000-04-1317-167/+420
| |
* | This commit was generated by cvs2svn to compensate for changes in r59191,kris2000-04-13696-9434/+55806
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of OpenSSL 0.9.5akris2000-04-13713-9597/+56254
| |
* | Correct a typo and interchanged library nameskris2000-04-051-2/+2
| | | | | | | | | | Submitted by: Ben Rosengart <ben@narcissus.net> Matthew D. Fuller <fullermd@futuresouth.com>
* | Don't refer to the openssl handbook chapter by name - the doc guys keepkris2000-03-252-2/+2
| | | | | | | | jamming new chapters in front of it :)
* | Add a new function stub to libcrypto() which resolves to a symbol inkris2000-03-134-0/+61
| | | | | | | | | | | | | | | | | | | | | | the librsa* library and reports which version of the library (OpenSSL/RSAREF) is being used. This is then used in openssh to detect the failure case of RSAREF and a RSA key >1024 bits, to print a more helpful error message than 'rsa_public_encrypt() fai led.' This is a 4.0-RELEASE candidate.
* | Update the wording on the error message when libcrypto.so can't find ankris2000-03-022-4/+8
| | | | | | | | | | | | RSA library. Reviewed by: peter, jkh
* | Sync with internat.freebsd.org; weak symbols vs static libs == troublepeter2000-02-262-42/+26
| |
* | Merge from internat.freebsd.org; move VERBOSE_STUBS to a better spot.peter2000-02-261-1/+2
| |
* | Merge from internat.freebsd.org repo, minus change to rsa_eay.c (missing)peter2000-02-261-0/+121
| | | | | | | | | | | | | | Reorganize and unify libcrypto's interface so that the RSA implementation is chosen at runtime via dlopen(). This is a checkpoint and may require more tweaks still.
* | Merge from internat.freebsd.org repo, minus change to rsa_eay.c (missing)peter2000-02-267-33/+13
| | | | | | | | | | | | | | Reorganize and unify libcrypto's interface so that the RSA implementation is chosen at runtime via dlopen(). This is a checkpoint and may require more tweaks still.
* | At great personal risk (to my already fragile sanity), reorganizepeter2000-02-261-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the rsa stubs for libcrypto. libcrypto.so now uses dlopen() to implement the backends for either the native or rsaref implemented RSA code. This involves: - unifying the libcrypto and openssl(1) source so there is no #ifdef RSAref variations. - using weak symbols and dlopen()/dlsym() routines to access the rsa method vectors. Releases will enable the user to choose International, US (rsaref) or no RSA code at install time. 'make world' will DTRT depending on whether you have the international or US source. For US users, you must either install rsaref (the port or package) or (if you don't fear RSA Inc) use the (superior) International rsa_eay.c code. This has been discussed at great length by the affected folks and even we have a great deal of confusion. This is a checkpoint so we can tune the results. This works for me in all permutations I can think of and should result in a CD/ftp 'release' just about doing the right thing now.
* | Don't use the dlopen() stubs if comiling with PIC. This stillpeter2000-02-251-2/+2
| | | | | | | | | | needs some more thought for the static case. Should we provide weak error-generating stubs for static binaries if -lrsaref was forgotten?
* | Oops; forgot to add this.markm2000-02-241-0/+444
| |
* | Get this to the same level of functionality as old libdes.markm2000-02-242-3/+8
| |
* | Add call stubs for dynamic rsaref loading. This isn't enabled for nowjkh2000-02-221-0/+161
| | | | | | | | but simply lets us sync up on the solution as it's evolved.
* | This commit was generated by cvs2svn to compensate for changes in r56083,kris2000-01-1613-0/+2601
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import the RSA support code. There shouldn't be any actual RSAkris2000-01-1613-0/+2601
| | | | | | | | cryptography here.
| * This commit was manufactured by cvs2svn to create branchcvs2svn2000-01-101-0/+25
| | | | | | | | 'VENDOR-crypto-openssl'.
* | Fix for missing symbol in -DRSAref case.kris2000-01-161-0/+6
| |
* | Fix breakage when NO_RSA specified.kris2000-01-149-5/+54
| | | | | | | | Reviewed by: Ben Laurie <ben@openssl.org>
* | Zap NO_IDEAkris2000-01-101-6/+2
| |
* | List of files to nuke prior to import.kris2000-01-101-0/+25
| |
* | This commit was generated by cvs2svn to compensate for changes in r55714,kris2000-01-101108-0/+223134
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of OpenSSL 0.9.4, sans IDEA and RSA code for patentkris2000-01-101108-0/+223134
| | | | | | | | infringement reasons.
* | Zap the IDEA stuff - it's patented internationally (at least in somekris2000-01-1012-1656/+0
|/ | | | places), and we don't want people to get in trouble just for having it.
* Initial import of OpenSSL v0.9.4kris1999-12-2513-0/+2145
OpenPOWER on IntegriCloud