aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/rand/randfile.c
Commit message (Expand)AuthorAgeFilesLines
* Create ~/.rnd with mode 0600 instead of 0666Jakub Wilk2014-06-081-0/+1
* Fix OPNESSL vs. OPENSSL typos.Andy Polyakov2012-01-151-1/+1
* more vxworks patchesDr. Stephen Henson2011-10-141-1/+4
* After some adjustments, apply the changes OpenSSL 1.0.0d on OpenVMSRichard Levitte2011-03-191-0/+2
* PR: 2372Dr. Stephen Henson2010-11-181-1/+1
* Fix warnings.Ben Laurie2010-06-121-2/+0
* PR: 2138Dr. Stephen Henson2010-01-261-0/+8
* PR: 1952Dr. Stephen Henson2009-06-131-2/+2
* This _WIN32-specific patch makes it possible to "wrap" OpenSSL in anotherAndy Polyakov2008-12-221-0/+7
* Revert the size_t modifications from HEAD that had led to moreGeoff Thorpe2008-11-121-6/+4
* More size_tification.Ben Laurie2008-11-011-4/+6
* randfile.c: .rnd can become orphaned on VMS.Andy Polyakov2008-10-281-23/+43
* Correctly adjust location of commentLutz Jänicke2008-05-201-1/+1
* Another occurance of possible valgrind/purify "uninitialized memory"Lutz Jänicke2008-05-161-0/+4
* Do not use uninitialized memory to seed the PRNG as it may confuseLutz Jänicke2007-03-021-3/+1
* Mask libcrypto references to stat with OPENSSL_NO_POSIX_IO.Andy Polyakov2005-11-031-5/+9
* When _XOPEN_SOURCE is defined, make sure it's defined to 500. Required inRichard Levitte2005-05-211-1/+1
* Wrap code starting with a definition.Richard Levitte2004-03-251-0/+2
* A couple more cases where RAND_add() gets an integer instead of aRichard Levitte2004-03-251-2/+2
* TypoRichard Levitte2004-01-291-2/+2
* S_IFBLK and S_IFCHR may not exist in some places (like Windows), soRichard Levitte2004-01-261-0/+4
* Check if a random "file" is really a device file, and treat itRichard Levitte2003-12-271-11/+56
* Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte2002-11-281-2/+2
* Security fixes brought forward from 0.9.7.Ben Laurie2002-11-131-2/+3
* Some platforms (most notably Windows) do not have a $HOME by default.Richard Levitte2001-05-031-1/+7
* undo previous change: "e_os.h" is now the official name for the fileBodo Möller2001-02-221-1/+1
* include e_os.h as "openssl/e_os.h" (as elsewhere)Bodo Möller2001-02-221-1/+1
* Since RAND_file_name() uses strlen, make sure the number that'sRichard Levitte2001-02-221-2/+2
* Include OpenSSL header files earlier so macros like OPENSSL_SYS_VMSRichard Levitte2001-02-201-4/+4
* Use new-style system-id macros everywhere possible. I hope I haven'tRichard Levitte2001-02-201-5/+5
* New function OPENSSL_issetugid(). Needs more work.Ulf Möller2001-02-141-10/+14
* use <= instead of ==Ulf Möller2001-02-081-1/+1
* point out that RAND_load_file() etc are only for seed files, not forUlf Möller2001-02-081-0/+3
* Don't include e_os.h before the system headersRichard Levitte2000-09-111-2/+1
* There are compilers that complain if a variable has the same name as aBodo Möller2000-06-161-3/+3
* There have been a number of complaints from a number of sources that namesRichard Levitte2000-06-011-1/+1
* When open()ing 'file' in RAND_write_file, don't use O_EXCL.Bodo Möller2000-05-111-10/+10
* Bug fix: RAND_write_file() failed to write to files created by open()Ulf Möller2000-03-191-42/+14
* Make sure an error condition is returned if, for some reason, the fileRichard Levitte2000-03-191-1/+5
* Workaround for Windoze weirdness.Bodo Möller2000-03-111-2/+4
* ftruncate() and fileno() are not supported on all versions of OpenVMSRichard Levitte2000-02-261-1/+30
* Changes to synchronise with Unix.Richard Levitte2000-02-251-0/+1
* Source code cleanups: Use void * rather than char * in lhash,Ulf Möller2000-01-301-1/+1
* RAND_load_file(..., -1) now means "read the complete file";Bodo Möller2000-01-241-4/+13
* Under VMS, ftruncate should be availableBodo Möller2000-01-231-0/+7
* As ftruncate is not availabe on all platforms, switch back toBodo Möller2000-01-231-14/+8
* Document RAND library.Ulf Möller2000-01-211-1/+0
* In RAND_write_file, truncate the file to the no. of bytes writtenBodo Möller2000-01-211-0/+2
* Check RAND_bytes() return value or use RAND_pseudo_bytes().Ulf Möller2000-01-211-3/+4
* Precautions against using the PRNG uninitialized: RAND_bytes() nowUlf Möller2000-01-131-2/+2