Lines Matching defs:output
94 * rearrangements on adjacent pairs, output is:
443 unsigned char output[MBEDTLS_ARIA_BLOCKSIZE])
484 MBEDTLS_PUT_UINT32_LE(a, output, 0);
485 MBEDTLS_PUT_UINT32_LE(b, output, 4);
486 MBEDTLS_PUT_UINT32_LE(c, output, 8);
487 MBEDTLS_PUT_UINT32_LE(d, output, 12);
517 unsigned char *output)
532 mbedtls_aria_crypt_ecb(ctx, input, output);
534 mbedtls_xor(output, output, iv, MBEDTLS_ARIA_BLOCKSIZE);
539 output += MBEDTLS_ARIA_BLOCKSIZE;
544 mbedtls_xor(output, input, iv, MBEDTLS_ARIA_BLOCKSIZE);
546 mbedtls_aria_crypt_ecb(ctx, output, output);
547 memcpy(iv, output, MBEDTLS_ARIA_BLOCKSIZE);
550 output += MBEDTLS_ARIA_BLOCKSIZE;
569 unsigned char *output)
593 *output++ = c ^ iv[n];
604 iv[n] = *output++ = (unsigned char) (iv[n] ^ *input++);
626 unsigned char *output)
650 *output++ = (unsigned char) (c ^ stream_block[n]);