Lines Matching refs:output

17     unsigned char output[100];
24 memset(output, 0x00, 100);
33 TEST_ASSERT( mbedtls_aes_crypt_ecb( &ctx, MBEDTLS_AES_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_aes_crypt_ecb( &ctx, MBEDTLS_AES_DECRYPT, src_str, output ) == 0 );
68 hexify( dst_str, output, 16 );
87 unsigned char output[100];
95 memset(output, 0x00, 100);
103 …dtls_aes_crypt_cbc( &ctx, MBEDTLS_AES_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 …dtls_aes_crypt_cbc( &ctx, MBEDTLS_AES_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 …dtls_aes_crypt_cfb128( &ctx, MBEDTLS_AES_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 …dtls_aes_crypt_cfb128( &ctx, MBEDTLS_AES_DECRYPT, 16, &iv_offset, iv_str, src_str, output ) == 0 );
215 hexify( dst_str, output, 16 );
232 unsigned char output[100];
240 memset(output, 0x00, 100);
248 …SERT( mbedtls_aes_crypt_cfb8( &ctx, MBEDTLS_AES_ENCRYPT, src_len, iv_str, src_str, output ) == 0 );
249 hexify( dst_str, output, src_len );
266 unsigned char output[100];
274 memset(output, 0x00, 100);
282 …SERT( mbedtls_aes_crypt_cfb8( &ctx, MBEDTLS_AES_DECRYPT, src_len, iv_str, src_str, output ) == 0 );
283 hexify( dst_str, output, src_len );