Home
last modified time | relevance | path

Searched refs:hexin (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c2483 static int htoi(unsigned char *hexin, unsigned int *res) argument
2486 inlen = strlen((char *) hexin);
2490 switch (hexin[lup]) {
2501 *res = (*res << 4) + (hexin[lup] - '0');
2510 *res = (*res << 4) + (hexin[lup] - 'a' + 10);
2519 *res = (*res << 4) + (hexin[lup] - 'A' + 10);