EVP_CipherInit_ex / EVP_CipherUpdate / EVP_CipherFinal_ex 的实现
我使用 OpenSSL 和 libcrypto 进行加密。我想问一下哪里可以找到这些方法。我需要它们,因为我想在我的代码中添加这些方法。我只想要 .h 和 .cc 或 .c 文件。欣赏
I am using OpenSSL and libcrypto
for encryption. I would like to ask where can I find these methods. I need them because i would like to add these methods in my code. I just want the .h and .cc or .c files. appreciate
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是有关如何自行编译 openssl 库的详细信息:
http://www.ski-epic.com/2007_notes_on_openssl/index.html
您可以从这里下载源代码:
http://www.openssl.org/
只需在代码中搜索您所引用的函数的实现即可,并复制/粘贴。不过,请确保图书馆的许可证允许您这样做。
Here is detailed information on how to compile the openssl library yourself:
http://www.ski-epic.com/2007_notes_on_openssl/index.html
You can download the source code from here:
http://www.openssl.org/
Simply search the code for implementations of the functions you are referring to, and copy/paste. Make sure the library's license allows you to do this, though.