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_hash_descriptor.c 14 Stores the hash descriptor table, Tom St Denis 15 */ 16 17 const struct ltc_hash_descriptor *hash_descriptor[TAB_SIZE]; 18 19 LTC_MUTEX_GLOBAL(ltc_hash_mutex) 20 21 22 /* ref: $Format:%D$ */ 23 /* git commit: $Format:%H$ */ 24 /* commit time: $Format:%ai$ */ 25