1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis */ 2 /* SPDX-License-Identifier: Unlicense */ 3 #include "tomcrypt_private.h" 4 5 /** 6 @file crypt_prng_descriptor.c 7 Stores the PRNG descriptors, Tom St Denis 8 */ 9 const struct ltc_prng_descriptor *prng_descriptor[TAB_SIZE]; 10 11 LTC_MUTEX_GLOBAL(ltc_prng_mutex) 12 13