Lines Matching refs:output
17 unsigned char output[100];
24 memset(output, 0x00, 100);
33 … TEST_ASSERT( mbedtls_blowfish_crypt_ecb( &ctx, MBEDTLS_BLOWFISH_ENCRYPT, src_str, output ) == 0 );
34 hexify( dst_str, output, 8 );
51 unsigned char output[100];
58 memset(output, 0x00, 100);
67 … TEST_ASSERT( mbedtls_blowfish_crypt_ecb( &ctx, MBEDTLS_BLOWFISH_DECRYPT, src_str, output ) == 0 );
68 hexify( dst_str, output, 8 );
87 unsigned char output[100];
95 memset(output, 0x00, 100);
104 …sh_crypt_cbc( &ctx, MBEDTLS_BLOWFISH_ENCRYPT, data_len , iv_str, src_str, output ) == cbc_result );
107 hexify( dst_str, output, data_len );
126 unsigned char output[100];
134 memset(output, 0x00, 100);
142 …sh_crypt_cbc( &ctx, MBEDTLS_BLOWFISH_DECRYPT, data_len , iv_str, src_str, output ) == cbc_result );
145 hexify( dst_str, output, data_len );
163 unsigned char output[100];
172 memset(output, 0x00, 100);
180 …crypt_cfb64( &ctx, MBEDTLS_BLOWFISH_ENCRYPT, src_len, &iv_offset, iv_str, src_str, output ) == 0 );
181 hexify( dst_str, output, src_len );
198 unsigned char output[100];
207 memset(output, 0x00, 100);
215 …crypt_cfb64( &ctx, MBEDTLS_BLOWFISH_DECRYPT, src_len, &iv_offset, iv_str, src_str, output ) == 0 );
216 hexify( dst_str, output, src_len );
234 unsigned char output[100];
244 memset(output, 0x00, 100);
252 …bedtls_blowfish_crypt_ctr( &ctx, src_len, &iv_offset, iv_str, stream_str, src_str, output ) == 0 );
253 hexify( dst_str, output, src_len );