1 // SPDX-License-Identifier: BSD-2-Clause
2 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3  *
4  * LibTomCrypt is a library that provides various cryptographic
5  * algorithms in a highly modular and flexible manner.
6  *
7  * The library is free for all purposes without any express
8  * guarantee it works.
9  */
10 #include "tomcrypt_private.h"
11 
12 /**
13   @file crypt_prng_descriptor.c
14   Stores the PRNG descriptors, Tom St Denis
15 */
16 const struct ltc_prng_descriptor *prng_descriptor[TAB_SIZE];
17 
18 LTC_MUTEX_GLOBAL(ltc_prng_mutex)
19 
20 
21 /* ref:         $Format:%D$ */
22 /* git commit:  $Format:%H$ */
23 /* commit time: $Format:%ai$ */
24