Lines Matching refs:U8TOU32
22 static unsigned int U8TOU32(const unsigned char *p) in U8TOU32() function
283 st->r[0] = U8TOU32(&key[0]) & 0x0fffffff; in poly1305_init()
284 st->r[1] = U8TOU32(&key[4]) & 0x0ffffffc; in poly1305_init()
285 st->r[2] = U8TOU32(&key[8]) & 0x0ffffffc; in poly1305_init()
286 st->r[3] = U8TOU32(&key[12]) & 0x0ffffffc; in poly1305_init()
315 h0 = (u32)(d0 = (u64)h0 + U8TOU32(inp + 0)); in poly1305_blocks()
316 h1 = (u32)(d1 = (u64)h1 + (d0 >> 32) + U8TOU32(inp + 4)); in poly1305_blocks()
317 h2 = (u32)(d2 = (u64)h2 + (d1 >> 32) + U8TOU32(inp + 8)); in poly1305_blocks()
318 h3 = (u32)(d3 = (u64)h3 + (d2 >> 32) + U8TOU32(inp + 12)); in poly1305_blocks()
435 ctx->nonce[0] = U8TOU32(&key[16]); in Poly1305_Init()
436 ctx->nonce[1] = U8TOU32(&key[20]); in Poly1305_Init()
437 ctx->nonce[2] = U8TOU32(&key[24]); in Poly1305_Init()
438 ctx->nonce[3] = U8TOU32(&key[28]); in Poly1305_Init()