Searched refs:hexdigits (Results 1 - 4 of 4) sorted by relevance

/bind-9.6-ESV-R11/contrib/sdb/ldap/
H A Dldapdb.c390 static const char hexdigits[] = "0123456789abcdef"; local
397 if ((p = strchr(hexdigits, tolower(s[1]))) == NULL)
399 d1 = p - hexdigits;
400 if ((p = strchr(hexdigits, tolower(s[2]))) == NULL)
402 d2 = p - hexdigits;
/bind-9.6-ESV-R11/lib/dns/
H A Dopenssldh_link.c568 static const char hexdigits[] = "0123456789abcdef"; local
578 s = strchr(hexdigits, tolower((unsigned char)str[i]));
580 high = s - hexdigits;
582 s = strchr(hexdigits, tolower((unsigned char)str[i + 1]));
584 low = s - hexdigits;
H A Drdata.c328 static const char hexdigits[] = "0123456789abcdef"; variable
1591 if ((s = strchr(hexdigits, c)) == NULL)
1593 return (s - hexdigits);
H A Dtkey.c719 static char hexdigits[16] = { local
736 randomtext[j++] = hexdigits[val >> 4];
737 randomtext[j++] = hexdigits[val & 0xF];

Completed in 21 milliseconds