Home | History | Annotate | Download | only in libcrypt

Lines Matching defs:hmac_buf

113     static unsigned char hmac_buf[SHA1_SIZE];
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];
186 explicit_memset(hmac_buf, 0, sizeof hmac_buf);