aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/random/random_rng.c
Commit message (Collapse)AuthorAgeFilesLines
* Use standard unsigned integer typesAndreas Steffen2016-03-241-1/+1
|
* random: Properly handle errors when reading from /dev/[u]randomTobias Brunner2015-10-291-0/+1
| | | | | | | | If -1 was returned on the first call to read() `done` got SIZE_MAX and the function returned TRUE even though no actual random data had been allocated. Fixes #1156.
* Implemented libstrongswan.plugins.random.strong_equals_true optionAndreas Steffen2013-11-161-0/+4
|
* Moved debug.[ch] to utils folderTobias Brunner2012-10-241-1/+1
|
* RNGs' get_bytes and allocate_bytes return booleanTobias Brunner2012-07-161-2/+4
|
* Use a single set of FDs for all random plugin RNG instancesMartin Willi2012-03-201-36/+14
|
* Migrated random plugin to INIT/METHOD macrosAndreas Steffen2010-12-041-20/+17
|
* Adding DBG_LIB to all calls of libstrongswan's version of DBG*.Tobias Brunner2010-04-061-2/+2
|
* removed trailing spaces ([[:space:]]+$)Martin Willi2009-09-041-5/+5
|
* removing svn keyword $Id$ from all filesTobias Brunner2009-04-301-2/+0
|
* changed RNG_REAL to RNG_TRUEAndreas Steffen2009-04-291-1/+1
|
* using signed return value for read()Martin Willi2008-09-301-1/+2
|
* added API for random number generators, served through credential factoryMartin Willi2008-04-151-0/+134
ported randomizer_t to a rng_t on top of /dev/(u)random (plugin random)