]> pd.if.org Git - zpackage/blob - libtomcrypt/src/misc/crypt/crypt_find_hash_oid.c
commit files needed for zpm-fetchurl
[zpackage] / libtomcrypt / src / misc / crypt / crypt_find_hash_oid.c
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
2  *
3  * LibTomCrypt is a library that provides various cryptographic
4  * algorithms in a highly modular and flexible manner.
5  *
6  * The library is free for all purposes without any express
7  * guarantee it works.
8  */
9 #include "tomcrypt.h"
10
11 /**
12   @file crypt_find_hash_oid.c
13   Find a hash, Tom St Denis
14 */
15
16 int find_hash_oid(const unsigned long *ID, unsigned long IDlen)
17 {
18    int x;
19    LTC_ARGCHK(ID != NULL);
20    LTC_MUTEX_LOCK(&ltc_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(&ltc_hash_mutex);
24           return x;
25        }
26    }
27    LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
28    return -1;
29 }
30
31 /* ref:         $Format:%D$ */
32 /* git commit:  $Format:%H$ */
33 /* commit time: $Format:%ai$ */