poly1305_update
static inline void poly1305_update(poly1305_context *ctx,
poly1305_update(ctx, in, len);
poly1305_update(&ctx->poly, pad0, PADDING_LEN(ctx->ad_len));
poly1305_update(&ctx->poly, out, in_len);
poly1305_update(&ctx->poly, in, in_len);
poly1305_update(&ctx->poly, pad0, PADDING_LEN(ctx->ad_len));
poly1305_update(&ctx->poly, out, in_len);
poly1305_update(&ctx->poly, in, in_len);
poly1305_update(&ctx->poly, pad0, PADDING_LEN(in_len));
poly1305_update(&ctx->poly, (uint8_t *)lens, sizeof(lens));
poly1305_update(&ctx->poly, ad, ad_len);
void poly1305_update(poly1305_state *, const uint8_t *, size_t);