1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis */
2 /* SPDX-License-Identifier: Unlicense */
3 #include "tomcrypt_private.h"
4 
5 /**
6   @file crypt_cipher_descriptor.c
7   Stores the cipher descriptor table, Tom St Denis
8 */
9 
10 const struct ltc_cipher_descriptor *cipher_descriptor[TAB_SIZE];
11 
12 LTC_MUTEX_GLOBAL(ltc_cipher_mutex)
13 
14