Lines Matching defs:input
90 * If we denote the first byte of input by 0, ..., the last byte by f,
442 const unsigned char input[MBEDTLS_ARIA_BLOCKSIZE],
449 a = MBEDTLS_GET_UINT32_LE(input, 0);
450 b = MBEDTLS_GET_UINT32_LE(input, 4);
451 c = MBEDTLS_GET_UINT32_LE(input, 8);
452 d = MBEDTLS_GET_UINT32_LE(input, 12);
516 const unsigned char *input,
531 memcpy(temp, input, MBEDTLS_ARIA_BLOCKSIZE);
532 mbedtls_aria_crypt_ecb(ctx, input, output);
538 input += MBEDTLS_ARIA_BLOCKSIZE;
544 mbedtls_xor(output, input, iv, MBEDTLS_ARIA_BLOCKSIZE);
549 input += MBEDTLS_ARIA_BLOCKSIZE;
568 const unsigned char *input,
592 c = *input++;
604 iv[n] = *output++ = (unsigned char) (iv[n] ^ *input++);
625 const unsigned char *input,
649 c = *input++;