标签: c openssl
我在Linux C中编写代码。我需要使用加密和解密文件 OpenSSL的。目前我使用系统命令“des3 -e -nosalt -k 0123456789012345 -in inp_file -out out_file”进行加密,使用“des3 -d -nosalt -k 0123456789012345 -in inp_file -out out_file”进行解密。我应该从哪里获得样本代码来使用C API进行相同的操作。
答案 0 :(得分:3)
我会看这里:http://www.openssl.org/docs/crypto/EVP_EncryptInit.html#EXAMPLES
在这里:http://www.nlnetlabs.nl/downloads/publications/hsm/hsm_node17.html