summaryrefslogtreecommitdiffstats
path: root/sm/keydb.c
diff options
context:
space:
mode:
Diffstat (limited to 'sm/keydb.c')
-rw-r--r--sm/keydb.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/sm/keydb.c b/sm/keydb.c
index 15f5dbdac..d5932135d 100644
--- a/sm/keydb.c
+++ b/sm/keydb.c
@@ -1010,33 +1010,6 @@ keydb_search_subject (KEYDB_HANDLE hd, const char *name)
static int
-hextobyte (const char *string)
-{
- const unsigned char *s = (const unsigned char *)string;
- int c;
-
- if( *s >= '0' && *s <= '9' )
- c = 16 * (*s - '0');
- else if ( *s >= 'A' && *s <= 'F' )
- c = 16 * (10 + *s - 'A');
- else if ( *s >= 'a' && *s <= 'f' )
- c = 16 * (10 + *s - 'a');
- else
- return -1;
- s++;
- if ( *s >= '0' && *s <= '9' )
- c += *s - '0';
- else if ( *s >= 'A' && *s <= 'F' )
- c += 10 + *s - 'A';
- else if ( *s >= 'a' && *s <= 'f' )
- c += 10 + *s - 'a';
- else
- return -1;
- return c;
-}
-
-
-static int
classify_user_id (const char *name,
KEYDB_SEARCH_DESC *desc,
int *force_exact )