mcrypt 示例不起作用

发布于 2024-12-03 11:38:30 字数 277 浏览 0 评论 0原文

我正在用 C++ 代码开发 ubuntu。我想通过此链接测试 mcrypt 的示例: http://linux.die.net/man /3/mcrypt ,但是当我这样做时:

gcc test.c -o testt -lmcrypt 

没有返回结果。为什么?

我哪里错了?

对于这两个示例,结果是相同的。欣赏!!

I am working on ubuntu in c++ code. I wanted to test an exmple with mcrypt from this link: http://linux.die.net/man/3/mcrypt , but whn i do:

gcc test.c -o testt -lmcrypt 

there is no result back. why?

Where am I wrong?

For both examples the result is the same. appreciate!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情何以堪。 2024-12-10 11:38:30
gcc test.c -o testt -lmcrypt

没有给出任何结果,因为没有错误(请参阅 UNIX 文化 [1])。

尝试运行生成的二进制文件以

./testt

查看输出(如果有)。

如果你愿意的话,探测文件

file ./testt
ldd ./testt
objdump -Ct ./testt

如果一切顺利,你将获得有关你的文件的各种信息:)


[1]:在《Unix 编程的艺术》中:http://www.faqs.org/docs/artu/ch01s06.html

gcc test.c -o testt -lmcrypt

gives no result, because there is no error (see UNIX culture[1]).

Try to run the resulting binary with

./testt

to see the output (if any).

Probe the file, if you will

file ./testt
ldd ./testt
objdump -Ct ./testt

If all is well, you'll get all kinds of information about your file :)


[1]: in The Art Of Unix Programming: http://www.faqs.org/docs/artu/ch01s06.html

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