OPENSSL 问题 - LINUX .cpp 代码
在 Ubuntu 中:我有一个带有字符串值的 .cpp 代码。我想用 aes 对其进行加密,并使用 base64 编码。怎么办?! OpenSSL 是一个解决方案,但它从命令行加密文件或字符串。:(
我想在代码中加密和编码我的字符串。从命令行我只想使用 g++ test.cpp -o test -?
和我需要的库。
in Ubuntu: I have a .cpp code with a string value. I would like to crypt it with aes and also use the base64 encoding. How to do that?! OpenSSL is a solution, but it crypts files or strings from the command line.:(
I would like to crypt and encode my string in my code. From the command line I just want to use g++ test.cpp -o test -?
and a library that I need.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 AES 加密,请查看 http://saju.net.in/code/misc/ openssl_aes.c.txt
要编译您的应用程序,您必须执行以下操作:
For AES encryption check out http://saju.net.in/code/misc/openssl_aes.c.txt
To compile your app you will have to do :