Lines Matching refs:output
17 unsigned char output[100];
24 memset(output, 0x00, 100);
33 … TEST_ASSERT( mbedtls_camellia_crypt_ecb( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, src_str, output ) == 0 );
34 hexify( dst_str, output, 16 );
51 unsigned char output[100];
58 memset(output, 0x00, 100);
67 … TEST_ASSERT( mbedtls_camellia_crypt_ecb( &ctx, MBEDTLS_CAMELLIA_DECRYPT, src_str, output ) == 0 );
68 hexify( dst_str, output, 16 );
87 unsigned char output[100];
95 memset(output, 0x00, 100);
103 …llia_crypt_cbc( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, data_len, iv_str, src_str, output) == cbc_result );
106 hexify( dst_str, output, data_len );
125 unsigned char output[100];
133 memset(output, 0x00, 100);
141 …lia_crypt_cbc( &ctx, MBEDTLS_CAMELLIA_DECRYPT, data_len, iv_str, src_str, output ) == cbc_result );
144 hexify( dst_str, output, data_len );
162 unsigned char output[100];
171 memset(output, 0x00, 100);
179 …lia_crypt_cfb128( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, 16, &iv_offset, iv_str, src_str, output ) == 0 );
180 hexify( dst_str, output, 16 );
197 unsigned char output[100];
206 memset(output, 0x00, 100);
214 …lia_crypt_cfb128( &ctx, MBEDTLS_CAMELLIA_DECRYPT, 16, &iv_offset, iv_str, src_str, output ) == 0 );
215 hexify( dst_str, output, 16 );