aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_rand.c
Commit message (Collapse)AuthorAgeFilesLines
* Use new-style system-id macros everywhere possible. I hope I haven'tRichard Levitte2001-02-201-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.
* If the source has already been succesfully queried, do not try to open itLutz Jänicke2001-02-031-2/+4
| | | | again as file.
* Don't ever set 'seeded' if RAND_status() returned 0Bodo Möller2000-10-231-7/+10
| | | | | (although maybe this static variable should be abolished totally, it was introduced before RAND_status existed).
* There's no reason why app_RAND_load_file() should return 0 whenRichard Levitte2000-10-211-1/+1
| | | | | RAND_status() hasn't. Reported by Dale Stimson <dale@accentre.com>.
* Read complete seed files given in -rand options.Bodo Möller2000-03-041-1/+1
|
* New '-dsaparam' option for 'openssl dhparam', and related fixes.Bodo Möller2000-03-031-1/+1
|
* Document the 'rand' application.Bodo Möller2000-03-011-1/+1
|
* 'rand' application for creating pseudo-random files.Bodo Möller2000-02-291-1/+1
|
* Fix for non-monolithic build.Ulf Möller2000-02-281-0/+2
| | | | Submitted by: Andrew Gray <agray@iconsinc.com>
* EGD bugfix.Ulf Möller2000-02-251-2/+4
| | | | Submitted by: Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
* Support EGD.Ulf Möller2000-02-241-3/+12
|
* ispell (and minor modifications)Ulf Möller2000-02-031-1/+1
|
* RAND_load_file(..., -1) now means "read the complete file";Bodo Möller2000-01-241-1/+1
| | | | | | | | | this is what we now use to read $RANDFILE / $HOME/.rnd. (Previously, after 'cat'ting lots of stuff into .rnd only the first MB would be looked at.) Bugfix for apps/enc.c: Continue if RAND_pseudo_bytes returns 0 (only -1 is an error).
* Fix to the -revoke option in ca. It was leaking memory, crashing and justDr. Stephen Henson1999-11-081-1/+1
| | | | | | | | | plain not working :-( Also fix some memory leaks in the new X509_NAME code. Fix so new app_rand code doesn't crash 'x509' and move #include so it compiles under Win32.
* Warn about RANDFILE being overwritten.Bodo Möller1999-10-261-1/+1
|
* New file app_rand.c with some functionality used in various opensslBodo Möller1999-10-261-0/+200
applications.