Lines Matching defs:input
71 * \param input Buffer containing the input block(s).
73 * applied to the input data before calling this
78 const unsigned char *input,
105 /* The input block is treated as a 128-bit little-endian integer */
106 d0 = MBEDTLS_GET_UINT32_LE(input, offset + 0);
107 d1 = MBEDTLS_GET_UINT32_LE(input, offset + 4);
108 d2 = MBEDTLS_GET_UINT32_LE(input, offset + 8);
109 d3 = MBEDTLS_GET_UINT32_LE(input, offset + 12);
283 const unsigned char *input,
299 input,
308 input,
323 poly1305_process(ctx, nblocks, &input[offset], 1U);
332 memcpy(ctx->queue, &input[offset], remaining);
362 const unsigned char *input,
376 ret = mbedtls_poly1305_update(&ctx, input, ilen);