Previous: Prime-Number-Generator Subsystem Architecture, Up: Architecture [Contents][Index]
Libgcrypt provides 3 levels or random quality: The level
GCRY_VERY_STRONG_RANDOM
usually used for key generation, the
level GCRY_STRONG_RANDOM
for all other strong random
requirements and the function gcry_create_nonce
which is used
for weaker usages like nonces. There is also a level
GCRY_WEAK_RANDOM
which in general maps to
GCRY_STRONG_RANDOM
except when used with the function
gcry_mpi_randomize
, where it randomizes a
multi-precision integer using the gcry_create_nonce
function.
There are three distinct random generators available:
random/random-csprng.c
and used by default.
random/random-drbg.c
and used if Libgcrypt is in FIPS mode,
or Libgcrypt is configured by GCRYCTL_SET_PREFERRED_RNG_TYPE with
GCRY_RNG_TYPE_FIPS.
random/random-system.c
and used if Libgcrypt is configured by
GCRYCTL_SET_PREFERRED_RNG_TYPE with GCRY_RNG_TYPE_SYSTEM.
All generators make use of so-called entropy gathering modules:
Uses the operating system provided getentropy
function.
Uses the operating system provided /dev/random and /dev/urandom devices. The /dev/gcrypt/random.conf config option only-urandom can be used to inhibit the use of the blocking /dev/random device.
Runs several operating system commands to collect entropy from sources
like virtual machine and process statistics. It is a kind of
poor-man’s /dev/random
implementation. It is not available in
FIPS mode.
Uses the operating system provided Entropy Gathering Daemon (EGD). The EGD basically uses the same algorithms as rndunix does. However as a system daemon it keeps on running and thus can serve several processes requiring entropy input and does not waste collected entropy if the application does not need all the collected entropy.
Targeted for the Microsoft Windows OS. It uses certain properties of that system and is the only gathering module available for that OS.
Extra module to collect additional entropy by utilizing a hardware random number generator. As of now the supported hardware RNG is the Padlock engine of VIA (Centaur) CPUs and x86 CPUs with the RDRAND instruction.
Extra module to collect additional entropy using a CPU jitter based approach. The /dev/gcrypt/random.conf config option disable-jent can be used to inhibit the use of this module.
• CSPRNG Description: | Description of the CSPRNG. | |
• DRBG Description: | Description of the DRBG. |
Previous: Prime-Number-Generator Subsystem Architecture, Up: Architecture [Contents][Index]