16 lines
476 B
C
16 lines
476 B
C
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
#include "tomcrypt_private.h"
|
|
|
|
/**
|
|
@file crypt_cipher_descriptor.c
|
|
Stores the cipher descriptor table, Tom St Denis
|
|
*/
|
|
|
|
struct ltc_cipher_descriptor cipher_descriptor[TAB_SIZE] = {
|
|
{ NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
|
|
};
|
|
|
|
LTC_MUTEX_GLOBAL(ltc_cipher_mutex)
|
|
|