Iam having a text file. I need to encrypt that file with a password. In command line (-k for password and -nosalt -des3) are being used. Is there any sample to achieve the same in C API.
|
Openssl contains lots of routines for many different crypto systems, including DES. The function you want is probably DES_ncbc_encrypt or one of the other variants, all of which are described on the des(3) man page. |
|||
|
|
|
If you are on a Linux System, you can use the crypt function. His prototype is :
Here is his desription (man 3 crypt) :
|
|||||||
|