Lines Matching defs:output
117 /* Generate the Poly1305 key by getting the ChaCha20 keystream output with
159 unsigned char *output)
180 ret = mbedtls_chacha20_update(&ctx->chacha20_ctx, len, input, output);
185 ret = mbedtls_poly1305_update(&ctx->poly1305_ctx, output, len);
195 ret = mbedtls_chacha20_update(&ctx->chacha20_ctx, len, input, output);
251 unsigned char *output,
266 ret = mbedtls_chachapoly_update(ctx, length, input, output);
283 unsigned char *output,
288 input, output, tag);
298 unsigned char *output)
306 aad, aad_len, input, output, check_tag)) != 0) {
314 mbedtls_platform_zeroize(output, length);
432 unsigned char output[200];
451 output,
456 ASSERT(0 == memcmp(output, test_output[i], test_input_len[i]),
457 ("failure (wrong output)\n"));