crypt-sha1.c | 113 static unsigned char hmac_buf[SHA1_SIZE]; local in function:__crypt_sha1 162 __hmac_sha1((unsigned char *)passwd, dl, pwu, pl, hmac_buf); 164 __hmac_sha1(hmac_buf, SHA1_SIZE, pwu, pl, hmac_buf); 173 ul = (hmac_buf[i+0] << 16) | 174 (hmac_buf[i+1] << 8) | 175 hmac_buf[i+2]; 179 ul = (hmac_buf[SHA1_SIZE - 2] << 16) | 180 (hmac_buf[SHA1_SIZE - 1] << 8) | 181 hmac_buf[0] [all...] |