Lines Matching refs:output
235 unsigned char output[MBEDTLS_BLOWFISH_BLOCKSIZE] ) in mbedtls_blowfish_crypt_ecb()
251 PUT_UINT32_BE( X0, output, 0 ); in mbedtls_blowfish_crypt_ecb()
252 PUT_UINT32_BE( X1, output, 4 ); in mbedtls_blowfish_crypt_ecb()
266 unsigned char *output ) in mbedtls_blowfish_crypt_cbc() argument
279 mbedtls_blowfish_crypt_ecb( ctx, mode, input, output ); in mbedtls_blowfish_crypt_cbc()
282 output[i] = (unsigned char)( output[i] ^ iv[i] ); in mbedtls_blowfish_crypt_cbc()
287 output += MBEDTLS_BLOWFISH_BLOCKSIZE; in mbedtls_blowfish_crypt_cbc()
296 output[i] = (unsigned char)( input[i] ^ iv[i] ); in mbedtls_blowfish_crypt_cbc()
298 mbedtls_blowfish_crypt_ecb( ctx, mode, output, output ); in mbedtls_blowfish_crypt_cbc()
299 memcpy( iv, output, MBEDTLS_BLOWFISH_BLOCKSIZE ); in mbedtls_blowfish_crypt_cbc()
302 output += MBEDTLS_BLOWFISH_BLOCKSIZE; in mbedtls_blowfish_crypt_cbc()
321 unsigned char *output ) in mbedtls_blowfish_crypt_cfb64() argument
334 *output++ = (unsigned char)( c ^ iv[n] ); in mbedtls_blowfish_crypt_cfb64()
347 iv[n] = *output++ = (unsigned char)( iv[n] ^ *input++ ); in mbedtls_blowfish_crypt_cfb64()
369 unsigned char *output ) in mbedtls_blowfish_crypt_ctr() argument
385 *output++ = (unsigned char)( c ^ stream_block[n] ); in mbedtls_blowfish_crypt_ctr()