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

/illumos-gate/usr/src/common/crypto/modes/
H A Dgcm.c58 extern void gcm_mul_pclmulqdq(uint64_t *x_in, uint64_t *y, uint64_t *res);
71 * multiply operator) on *x_in and *y and place the result in *res.
73 * Byte swap the input (*x_in and *y) and the output (*res).
75 * Note: x_in, y, and res all point to 16-byte numbers (an array of two
79 gcm_mul(uint64_t *x_in, uint64_t *y, uint64_t *res) argument
84 gcm_mul_pclmulqdq(x_in, y, res);
99 x = ntohll(x_in[j]);

Completed in 46 milliseconds