OPENSSL 问题 - LINUX .cpp 代码

发布于 2024-10-08 19:07:21 字数 186 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪之魂 2024-10-15 19:07:21

对于 AES 加密,请查看 http://saju.net.in/code/misc/ openssl_aes.c.txt

要编译您的应用程序,您必须执行以下操作:

g++ -o test test.cpp -lssl -lcrypto

For AES encryption check out http://saju.net.in/code/misc/openssl_aes.c.txt

To compile your app you will have to do :

g++ -o test test.cpp -lssl -lcrypto
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文