Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c2482 static int htoi(unsigned char *hexin, unsigned int *res) argument
2485 inlen = strlen((char *) hexin);
2489 switch (hexin[lup]) {
2500 *res = (*res << 4) + (hexin[lup] - '0');
2509 *res = (*res << 4) + (hexin[lup] - 'a' + 10);
2518 *res = (*res << 4) + (hexin[lup] - 'A' + 10);