aboutsummaryrefslogtreecommitdiffstats
path: root/apps/nseq.c
Commit message (Collapse)AuthorAgeFilesLines
* EXIT() may mean return(). That's confusing, so let's have it really meanRichard Levitte2002-12-031-2/+2
| | | | | | 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)
* On VMS, stdout may very well lead to a file that is written to in aRichard Levitte2000-09-201-3/+10
| | | | | | | | | | | | | | | | | 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.
* Use sk_*_new_null() instead of sk_*_new(NULL), since that takes careRichard Levitte2000-09-171-1/+1
| | | | | of complaints from the compiler about data pointers and function pointers not being compatible with each other.
* Make gcc 2.95.2 happy again, even under ``-Wall -Wshadow -Wpointer-arith ↵Ralf S. Engelschall2000-02-111-0/+1
| | | | | | -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''.
* Merge some common functionality in the apps, deleteDr. Stephen Henson1999-11-121-15/+0
| | | | | the encryption option in the pkcs7 utility (they never did anything) and add a couple more options to pkcs7.
* Additional user data argument to pem_password_cb function typeBodo Möller1999-07-211-2/+2
| | | | | and to lots of PEM_... functions. Submitted by: Damien Miller <dmiller@ilogic.com.au>
* Don't mix real tabs with tabs expanded as 8 spaces -- that'sBodo Möller1999-06-071-12/+12
| | | | a pain to read when using 4-space tabs.
* Another safe stack.Ben Laurie1999-05-301-5/+5
|
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-261-4/+0
|
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-231-2/+2
| | | | | | Submitted by: Reviewed by: PR:
* Fix lots of warnings.Ulf Möller1999-04-201-0/+1
| | | | Submitted by: Richard Levitte <levitte@stacken.kth.se>
* Change functions to ANSI C.Ulf Möller1999-04-191-6/+2
|
* Include pkcs12 program as part of openssl. This completes most of the PKCS#12Dr. Stephen Henson1999-03-291-1/+0
| | | | integration.
* Reflect correct filenameRalf S. Engelschall1999-01-311-1/+1
|
* New program 'nseq' added to apps to allow Netscape certificate sequences toDr. Stephen Henson1999-01-291-0/+182
be pulled apart and built.