Mercurial > dropbear
comparison src/misc/crypt/crypt_find_hash.c @ 210:4768b55c5240 libtomcrypt
propagate from branch 'au.asn.ucc.matt.ltc-orig' (head 33c416b902f1a44913d825bae7ad9a160f703ed3)
to branch 'au.asn.ucc.matt.dropbear.ltc' (head 4d6aec6e6121e13f68c11c149b6579c41cb63e74)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 06 Jul 2005 12:10:23 +0000 |
parents | 39d5d58461d6 |
children |
comparison
equal
deleted
inserted
replaced
199:8be64e2c86f4 | 210:4768b55c5240 |
---|---|
22 */ | 22 */ |
23 int find_hash(const char *name) | 23 int find_hash(const char *name) |
24 { | 24 { |
25 int x; | 25 int x; |
26 LTC_ARGCHK(name != NULL); | 26 LTC_ARGCHK(name != NULL); |
27 LTC_MUTEX_LOCK(<c_hash_mutex); | |
27 for (x = 0; x < TAB_SIZE; x++) { | 28 for (x = 0; x < TAB_SIZE; x++) { |
28 if (hash_descriptor[x].name != NULL && strcmp(hash_descriptor[x].name, name) == 0) { | 29 if (hash_descriptor[x].name != NULL && strcmp(hash_descriptor[x].name, name) == 0) { |
30 LTC_MUTEX_UNLOCK(<c_hash_mutex); | |
29 return x; | 31 return x; |
30 } | 32 } |
31 } | 33 } |
34 LTC_MUTEX_UNLOCK(<c_hash_mutex); | |
32 return -1; | 35 return -1; |
33 } | 36 } |
37 | |
38 /* $Source: /cvs/libtom/libtomcrypt/src/misc/crypt/crypt_find_hash.c,v $ */ | |
39 /* $Revision: 1.4 $ */ | |
40 /* $Date: 2005/06/19 18:00:28 $ */ |