Symbol: CRYPTO_poly1305_update
lib/libcrypto/evp/e_chacha20poly1305.c
100
CRYPTO_poly1305_update(poly1305, data, data_len);
lib/libcrypto/evp/e_chacha20poly1305.c
101
CRYPTO_poly1305_update(poly1305, length_bytes, sizeof(length_bytes));
lib/libcrypto/evp/e_chacha20poly1305.c
114
CRYPTO_poly1305_update(poly1305, zero_pad16, 16 - pad_len);
lib/libcrypto/evp/e_chacha20poly1305.c
121
CRYPTO_poly1305_update(poly1305, data, data_len);
lib/libcrypto/evp/e_chacha20poly1305.c
497
CRYPTO_poly1305_update(&cpx->poly1305, in, len);
lib/libcrypto/evp/e_chacha20poly1305.c
506
CRYPTO_poly1305_update(&cpx->poly1305, out, len);
lib/libcrypto/hidden/openssl/poly1305.h
29
LCRYPTO_USED(CRYPTO_poly1305_update);
lib/libcrypto/poly1305/poly1305.c
34
LCRYPTO_ALIAS(CRYPTO_poly1305_update);
lib/libcrypto/poly1305/poly1305.h
37
void CRYPTO_poly1305_update(poly1305_context *ctx, const unsigned char *in,
regress/lib/libcrypto/poly1305/poly1305test.c
125
CRYPTO_poly1305_update(&ctx, nacl_msg + 0, 32);
regress/lib/libcrypto/poly1305/poly1305test.c
126
CRYPTO_poly1305_update(&ctx, nacl_msg + 32, 64);
regress/lib/libcrypto/poly1305/poly1305test.c
127
CRYPTO_poly1305_update(&ctx, nacl_msg + 96, 16);
regress/lib/libcrypto/poly1305/poly1305test.c
128
CRYPTO_poly1305_update(&ctx, nacl_msg + 112, 8);
regress/lib/libcrypto/poly1305/poly1305test.c
129
CRYPTO_poly1305_update(&ctx, nacl_msg + 120, 4);
regress/lib/libcrypto/poly1305/poly1305test.c
130
CRYPTO_poly1305_update(&ctx, nacl_msg + 124, 2);
regress/lib/libcrypto/poly1305/poly1305test.c
131
CRYPTO_poly1305_update(&ctx, nacl_msg + 126, 1);
regress/lib/libcrypto/poly1305/poly1305test.c
132
CRYPTO_poly1305_update(&ctx, nacl_msg + 127, 1);
regress/lib/libcrypto/poly1305/poly1305test.c
133
CRYPTO_poly1305_update(&ctx, nacl_msg + 128, 1);
regress/lib/libcrypto/poly1305/poly1305test.c
134
CRYPTO_poly1305_update(&ctx, nacl_msg + 129, 1);
regress/lib/libcrypto/poly1305/poly1305test.c
135
CRYPTO_poly1305_update(&ctx, nacl_msg + 130, 1);
regress/lib/libcrypto/poly1305/poly1305test.c
152
CRYPTO_poly1305_update(&total_ctx, mac, 16);
regress/lib/libcrypto/poly1305/poly1305test.c
23
CRYPTO_poly1305_update(&ctx, m, bytes);