summaryrefslogtreecommitdiffstats
path: root/crypto/crypto-lib.com
AgeCommit message (Collapse)Author
2002-08-13Oh, ec2_smpt.c is #included by ec2_smpl.c!Richard Levitte
2002-08-12A few files in the ENGINE and EVP sections forgotten.Richard Levitte
2002-08-11One more file to compile on VMS as well.Richard Levitte
2002-08-09Synchronise with Unix.Richard Levitte
(I expect the next run will generate lots of errors on VMS :-)).
2002-05-23Make sure ECDSA is built and tested on VMS.Richard Levitte
Avoid loops if linking an application fails.
2002-05-22Allow the use of the TCP/IP stack keyword TCPIP and NONERichard Levitte
2002-03-26Add the mapping of des_random_seed() for 0.9.6 compatibility.Richard Levitte
Make sure DES_cblock is defined at all times (meaning one shouldn't include openssl/des_old.h directly any more).
2002-03-04Typo. In DCL, the continuation character is a dash at the end of theRichard Levitte
line, which I forgot when spliting one.
2002-02-28VMS addaptation, including a few more long names that needed hacking.Richard Levitte
2002-01-21Bring VMS up to date with development.Richard Levitte
2001-11-16Make sure evp_locl.h can be included (hw_openbsd_dev_crypto.c needs that).Richard Levitte
2001-10-29Addapt VMS scripts to the newer disk layout system ODS-5, which allows more ↵Richard Levitte
than one period and mixed size characters in file names
2001-10-24Due to an increasing number of clashes between modern OpenSSL andRichard Levitte
libdes (which is still used out there) or other des implementations, the OpenSSL DES functions are renamed to begin with DES_ instead of des_. Compatibility routines are provided and declared by including openssl/des_old.h. Those declarations are the same as were in des.h when the OpenSSL project started, which is exactly how libdes looked at that time, and hopefully still looks today. The compatibility functions will be removed in some future release, at the latest in version 1.0.
2001-10-04Because there's chances we clash with the system's types.h, rename ourRichard Levitte
types.h to ossl_typ.h. Also, it seems like krb5 was forgotten in some places.
2001-10-02Hmm, everything "open" isn't necessarely "openssl" :-).Richard Levitte
*sigh* habit...
2001-10-01o_time.c contains symbols with dollar signs in them, so we must tellRichard Levitte
the compiler not to warn about that.
2001-09-27Synchronise with Unixly build.Richard Levitte
2001-07-27Addapt VMS script to the latest changes in the makefiles.Richard Levitte
2001-05-16New internal function OPENSSL_gmtime, which is intended to do the sameRichard Levitte
as gmtime_r() on the systems where that is defined.
2001-05-14Remove the password reading objects from LIB_DES.Richard Levitte
2001-05-06Add a general user interface API. This is designed to replace thingsRichard Levitte
like des_read_password and friends (backward compatibility functions using this new API are provided). The purpose is to remove prompting functions from the DES code section as well as provide for prompting through dialog boxes in a window system and the like.
2001-04-20VMS was behind when it comes to OCSP.Richard Levitte
2001-04-04Since vms.mar handles 32-bit integers, do not use it on Alpha, that'sRichard Levitte
just a slowdown.
2001-03-08VMS catches up on the EC modifications.Richard Levitte
2001-03-05Update the VMS build scripts for ECRichard Levitte
2001-02-22e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte
and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
2001-02-20Let VMS catch up.Richard Levitte
2001-02-19Make all configuration macros available for application by makingRichard Levitte
sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
2001-02-19VMS follows suit.Richard Levitte
2001-01-08Keep up with Unix code. It's beginning to be time to rethink the VMSRichard Levitte
build system...
2001-01-07Keep up with the Unixly changes.Richard Levitte
2000-12-29Correct a typo.Richard Levitte
2000-12-28Update VMS build procedures to match the current status.Richard Levitte
2000-11-30BN_mod_sqrtBodo Möller
2000-11-28Addapt to added files in the BIGNUM sectionRichard Levitte
2000-11-22Addapt the VMS scripts to the changes in the Makefiles.Richard Levitte
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte
away now...
2000-10-26Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte
At the same time, add VMS support for Rijndael.
2000-09-20On VMS, stdout may very well lead to a file that is written to in aRichard Levitte
record-oriented fashion. That means that every write() will write a separate record, which will be read separately by the programs trying to read from it. This can be very confusing. The solution is to put a BIO filter in the way that will buffer text until a linefeed is reached, and then write everything a line at a time, so every record written will be an actual line, not chunks of lines and not (usually doesn't happen, but I've seen it once) several lines in one record. Voila, BIO_f_linebuffer() is born. Since we're so close to release time, I'm making this VMS-only for now, just to make sure no code is needlessly broken by this. After the release, this BIO method will be enabled on all other platforms as well.
2000-09-15Compile all dso files on VMS as well.Richard Levitte
2000-09-15A DSO method for VMS was missing, and I had the code lying around...Richard Levitte
2000-09-09More VMS synchronisationRichard Levitte
2000-09-08Synchronise the VMS build with the Unix one.Richard Levitte
2000-08-17Added md4 to the VMS compilationRichard Levitte
2000-06-18Modifications for VMS.Richard Levitte
2000-04-04This commit ties the new DSO code (crypto/dso/) into the build for aGeoff Thorpe
variety of platforms. A few are missing, and they will be added in eventually, but as this is new stuff, it was better to not break lots of platforms in one go that we can't easily test. The changes to "Configure" should illustrate how to add support to other systems if you feel like having a go. NB: I'll add something shortly to allow you to add "dlfcn.h" support on those platforms that don't have (or need) a dlfcn.h header file. (The symbol for Configure will probably by "dlfcn_no_h"). Thanks to Richard Levitte, who is responsible for the dso_dl.c support, understanding the trickier aspects of the build process, and giving great feedback on everything else. [Don't use this stuff if you're easily offended by changes to the interface or behaviour - it's still work in progress.] PR:
2000-03-19Keep in sync with Unix code, and prepare for a misfeature fix.Richard Levitte
2000-03-14bss_log has dollars, so compile it with that warning flag disabled.Richard Levitte
2000-03-02Make bss_log.c a bit more readable, and implement it for VMS as well.Richard Levitte
2000-02-27New logical names to skip algorithms are now supported.Richard Levitte
Also, on Alpha, vms.mar is no longer used (it produced a lot of confusing messages) for BN. Instead, the assembler part of bn_lcl.h is used.