Lines Matching refs:output
30 unsigned char output[100];
36 memset(output, 0x00, 100);
43 TEST_ASSERT( mbedtls_des_crypt_ecb( &ctx, src_str, output ) == 0 );
44 hexify( dst_str, output, 8 );
60 unsigned char output[100];
66 memset(output, 0x00, 100);
73 TEST_ASSERT( mbedtls_des_crypt_ecb( &ctx, src_str, output ) == 0 );
74 hexify( dst_str, output, 8 );
91 unsigned char output[100];
99 memset(output, 0x00, 100);
107 …TEST_ASSERT( mbedtls_des_crypt_cbc( &ctx, MBEDTLS_DES_ENCRYPT, src_len, iv_str, src_str, output ) …
110 hexify( dst_str, output, src_len );
128 unsigned char output[100];
136 memset(output, 0x00, 100);
144 …TEST_ASSERT( mbedtls_des_crypt_cbc( &ctx, MBEDTLS_DES_DECRYPT, src_len, iv_str, src_str, output ) …
147 hexify( dst_str, output, src_len );
164 unsigned char output[100];
170 memset(output, 0x00, 100);
183 TEST_ASSERT( mbedtls_des3_crypt_ecb( &ctx, src_str, output ) == 0 );
184 hexify( dst_str, output, 8 );
200 unsigned char output[100];
206 memset(output, 0x00, 100);
219 TEST_ASSERT( mbedtls_des3_crypt_ecb( &ctx, src_str, output ) == 0 );
220 hexify( dst_str, output, 8 );
238 unsigned char output[100];
246 memset(output, 0x00, 100);
260 …dtls_des3_crypt_cbc( &ctx, MBEDTLS_DES_ENCRYPT, src_len, iv_str, src_str, output ) == cbc_result );
264 hexify( dst_str, output, src_len );
283 unsigned char output[100];
291 memset(output, 0x00, 100);
305 …dtls_des3_crypt_cbc( &ctx, MBEDTLS_DES_DECRYPT, src_len, iv_str, src_str, output ) == cbc_result );
309 hexify( dst_str, output, src_len );