Lines Matching refs:poly1305_blocks
69 * poly1305_blocks processes a multiple of POLY1305_BLOCK_SIZE blocks
80 * poly1305_blocks does not actually check for this constraint though,
88 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit);
148 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit)
290 poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit)
427 void poly1305_blocks(void *ctx, const unsigned char *inp, size_t len,
450 ctx->func.blocks = poly1305_blocks;
461 * This "eclipses" poly1305_blocks and poly1305_emit, but it's
464 # define poly1305_blocks (*poly1305_blocks_p)
472 * As documented, poly1305_blocks is never called with input
485 poly1305_blocks(ctx->opaque, ctx->data, POLY1305_BLOCK_SIZE, 1);
500 poly1305_blocks(ctx->opaque, inp, len, 1);
522 poly1305_blocks(ctx->opaque, ctx->data, POLY1305_BLOCK_SIZE, 0);