Definition at line 137 of file cryptoFunctions.cpp. 00137 { 00138 initCharArray(output, length); 00139 nullIvec(IVEC); 00140 CAST_KEY key; 00141 CAST_set_key(&key, LENGTH_ITERATION_WORD, iteration); 00142 CAST_cbc_encrypt(input, *output, length, &key, IVEC, CAST_ENCRYPT); 00143 return length; 00144 }
|
1.5.1