Home
last modified time | relevance | path

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

/openssl/crypto/poly1305/
H A Dpoly1305_base2_44.c32 static u64 U8TOU64(const unsigned char *p) in U8TOU64() function
67 r0 = U8TOU64(&key[0]) & 0x0ffffffc0fffffff; in poly1305_init()
68 r1 = U8TOU64(&key[8]) & 0x0ffffffc0ffffffc; in poly1305_init()
105 m0 = U8TOU64(inp + 0); in poly1305_blocks()
106 m1 = U8TOU64(inp + 8); in poly1305_blocks()
H A Dpoly1305.c108 static u64 U8TOU64(const unsigned char *p) in U8TOU64() function
143 st->r[0] = U8TOU64(&key[0]) & 0x0ffffffc0fffffff; in poly1305_init()
144 st->r[1] = U8TOU64(&key[8]) & 0x0ffffffc0ffffffc; in poly1305_init()
167 h0 = (u64)(d0 = (u128)h0 + U8TOU64(inp + 0)); in poly1305_blocks()
168 h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8)); in poly1305_blocks()

Completed in 17 milliseconds