Searched defs:hexin (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/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);

Completed in 106 milliseconds