aboutsummaryrefslogtreecommitdiff
path: root/apps/crl2p7.c
AgeCommit message (Collapse)AuthorFilesLines
2005-11-04Eliminate dependency on read/write/stat in apps under _WIN32.Andy Polyakov1-8/+0
2002-12-03EXIT() may mean return(). That's confusing, so let's have it really meanRichard Levitte1-1/+1
exit() in whatever way works for the intended platform, and define OPENSSL_EXIT() to have the old meaning (the name is of course because it's only used in the openssl program)
2001-06-23Use apps_shutdown() in all applications, in case someone decides notRichard Levitte1-1/+3
to go the monolith way (does anyone do that these days?). NOTE: a few applications are missing in this commit. I've a few more changes in them that I haven't tested yet.
2001-02-20Use new-style system-id macros everywhere possible. I hope I haven'tRichard Levitte1-1/+1
missed any. This compiles and runs on Linux, and external applications have no problems with it. The definite test will be to build this on VMS.
2000-09-20On VMS, stdout may very well lead to a file that is written to in aRichard Levitte1-1/+9
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-17Use sk_*_new_null() instead of sk_*_new(NULL), since that takes careRichard Levitte1-3/+3
of complaints from the compiler about data pointers and function pointers not being compatible with each other.
2000-06-01There have been a number of complaints from a number of sources that namesRichard Levitte1-2/+2
like Malloc, Realloc and especially Free conflict with already existing names on some operating systems or other packages. That is reason enough to change the names of the OpenSSL memory allocation macros to something that has a better chance of being unique, like prepending them with OPENSSL_. This change includes all the name changes needed throughout all C files.
2000-02-11Make gcc 2.95.2 happy again, even under ``-Wall -Wshadow -Wpointer-arith ↵Ralf S. Engelschall1-0/+2
-Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''.
2000-01-09New function X509_CTX_rget_chain(), make SSL_SESSION_print() display return ↵Dr. Stephen Henson1-3/+3
code. Remove references to 'TXT' in -inform and -outform switches.
1999-07-21Additional user data argument to pem_password_cb function typeBodo Möller1-2/+2
and to lots of PEM_... functions. Submitted by: Damien Miller <dmiller@ilogic.com.au>
1999-05-31stack.Ben Laurie1-3/+3
1999-05-04Convert casted X509_INFO stacks to type-safe STACK_OF(X509_INFO).Ralf S. Engelschall1-4/+4
PS: Feel free to move the IMPLEMENT_STACK_OF(X509_INFO) from crypto/asn1/x_info.c to any other place where you think it fits better. X509_INFO is a structure slightly spreaded over ASN.1, X509 and PEM code, so I found no definitive location for IMPLEMENT_STACK_OF(X509_INFO). In crypto/asn1/x_info.c it's at least now bundled with X509_INFO_new() and friends.
1999-04-26Remove NOPROTO definitions and error code comments.Ulf Möller1-5/+0
1999-04-23Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1-6/+6
Submitted by: Reviewed by: PR:
1999-04-19Change functions to ANSI C.Ulf Möller1-6/+2
1999-04-12Add type-safe STACKs and SETs.Ben Laurie1-5/+5
1999-01-29Allow the -certfile argument to be used multiple times in crl2pkcs7.Dr. Stephen Henson1-9/+17
Also fix typos in the usage messages: "inout" instead of "input".
1998-12-21Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1-2/+2
1998-12-21Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1-0/+334