Definition at line 113 of file cryptoFunctions.cpp. 00113 { 00114 initCharArray(output, length); 00115 nullIvec(IVEC); 00116 BF_KEY key; 00117 BF_set_key(&key, LENGTH_ITERATION_WORD, iteration); 00118 BF_cbc_encrypt(input, *output, length, &key, IVEC, BF_ENCRYPT); 00119 return length; 00120 }
|
1.5.1