Lines Matching refs:text

158     struct { uint64_t aad, text; } len;  member
177 actx->len.text = 0; in chacha20_poly1305_init_key()
239 actx->len.text = plen; in chacha20_poly1305_tls_cipher()
264 actx->len.text = plen; in chacha20_poly1305_tls_cipher()
298 actx->len.text = plen; in chacha20_poly1305_tls_cipher()
329 ctr[8] = (unsigned char)(actx->len.text); in chacha20_poly1305_tls_cipher()
330 ctr[9] = (unsigned char)(actx->len.text>>8); in chacha20_poly1305_tls_cipher()
331 ctr[10] = (unsigned char)(actx->len.text>>16); in chacha20_poly1305_tls_cipher()
332 ctr[11] = (unsigned char)(actx->len.text>>24); in chacha20_poly1305_tls_cipher()
333 ctr[12] = (unsigned char)(actx->len.text>>32); in chacha20_poly1305_tls_cipher()
334 ctr[13] = (unsigned char)(actx->len.text>>40); in chacha20_poly1305_tls_cipher()
335 ctr[14] = (unsigned char)(actx->len.text>>48); in chacha20_poly1305_tls_cipher()
336 ctr[15] = (unsigned char)(actx->len.text>>56); in chacha20_poly1305_tls_cipher()
381 actx->len.aad = actx->len.text = 0; in chacha20_poly1305_cipher()
416 actx->len.text += plen; in chacha20_poly1305_cipher()
422 actx->len.text += plen; in chacha20_poly1305_cipher()
438 if ((rem = (size_t)actx->len.text % POLY1305_BLOCK_SIZE)) in chacha20_poly1305_cipher()
455 temp[8] = (unsigned char)(actx->len.text); in chacha20_poly1305_cipher()
456 temp[9] = (unsigned char)(actx->len.text>>8); in chacha20_poly1305_cipher()
457 temp[10] = (unsigned char)(actx->len.text>>16); in chacha20_poly1305_cipher()
458 temp[11] = (unsigned char)(actx->len.text>>24); in chacha20_poly1305_cipher()
459 temp[12] = (unsigned char)(actx->len.text>>32); in chacha20_poly1305_cipher()
460 temp[13] = (unsigned char)(actx->len.text>>40); in chacha20_poly1305_cipher()
461 temp[14] = (unsigned char)(actx->len.text>>48); in chacha20_poly1305_cipher()
462 temp[15] = (unsigned char)(actx->len.text>>56); in chacha20_poly1305_cipher()
511 actx->len.text = 0; in chacha20_poly1305_ctrl()