xref: /optee_os/core/lib/libtomcrypt/src/misc/crypt/crypt_hash_descriptor.c (revision 8411e6ad673d20c4742ed30c785e3f5cdea54dfa)
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis */
2 /* SPDX-License-Identifier: Unlicense */
3 #include "tomcrypt_private.h"
4 
5 /**
6   @file crypt_hash_descriptor.c
7   Stores the hash descriptor table, Tom St Denis
8 */
9 
10 const struct ltc_hash_descriptor *hash_descriptor[TAB_SIZE];
11 
12 LTC_MUTEX_GLOBAL(ltc_hash_mutex)
13 
14