Lines Matching refs:output
50 unsigned char output[100];
53 memset(output, 0x00, 100);
60 …TEST_ASSERT( mbedtls_camellia_crypt_ecb( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, src_str->x, output ) == 0…
62 TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
74 unsigned char output[100];
77 memset(output, 0x00, 100);
84 …TEST_ASSERT( mbedtls_camellia_crypt_ecb( &ctx, MBEDTLS_CAMELLIA_DECRYPT, src_str->x, output ) == 0…
86 TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
98 unsigned char output[100];
101 memset(output, 0x00, 100);
106 …_cbc( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, src_str->len, iv_str->x, src_str->x, output) == cbc_result );
110 TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, src_str->len,
124 unsigned char output[100];
127 memset(output, 0x00, 100);
132 …cbc( &ctx, MBEDTLS_CAMELLIA_DECRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
136 TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, src_str->len,
149 unsigned char output[100];
153 memset(output, 0x00, 100);
158 …ypt_cfb128( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, 16, &iv_offset, iv_str->x, src_str->x, output ) == 0 );
160 TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
172 unsigned char output[100];
176 memset(output, 0x00, 100);
181 …ypt_cfb128( &ctx, MBEDTLS_CAMELLIA_DECRYPT, 16, &iv_offset, iv_str->x, src_str->x, output ) == 0 );
183 TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );