1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
12 @file crypt_find_hash_oid.c
13 Find a hash, Tom St Denis
16 int find_hash_oid(const unsigned long *ID, unsigned long IDlen)
19 LTC_ARGCHK(ID != NULL);
20 LTC_MUTEX_LOCK(<c_hash_mutex);
21 for (x = 0; x < TAB_SIZE; x++) {
22 if (hash_descriptor[x].name != NULL && hash_descriptor[x].OIDlen == IDlen && !XMEMCMP(hash_descriptor[x].OID, ID, sizeof(unsigned long) * IDlen)) {
23 LTC_MUTEX_UNLOCK(<c_hash_mutex);
27 LTC_MUTEX_UNLOCK(<c_hash_mutex);
31 /* ref: $Format:%D$ */
32 /* git commit: $Format:%H$ */
33 /* commit time: $Format:%ai$ */