需要使用 openssl 加密和解密文件的示例 C 代码
我正在用 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 执行相同的操作。
Am writing code in Linux C. I need to encrypt and decrypt files using
openssl. Currently Am using system command "des3 -e -nosalt -k 0123456789012345 -in inp_file -out out_file" for encrypting and "des3 -d -nosalt -k 0123456789012345 -in inp_file -out out_file" for decrypting. Where shall I get sample code to do the same with C API's.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在这里查看: http://www.openssl.org/docs/crypto /EVP_EncryptInit.html#EXAMPLES
和此处:http://www .nlnetlabs.nl/downloads/publications/hsm/hsm_node17.html
I would look here: http://www.openssl.org/docs/crypto/EVP_EncryptInit.html#EXAMPLES
and here: http://www.nlnetlabs.nl/downloads/publications/hsm/hsm_node17.html