向openssl添加idea模块
我试图在openssl中使用idea加密模块。安装openssl后,在列出密码命令时,IDEA不在那里。源代码确实包含 crypto 文件夹中的 idea 文件夹。在配置时,与配置 idea 相对应的终端中显示以下消息。
making links in crypto/idea...
make[2]: Entering directory `/home/primal/openssl-1.0.0c/crypto/idea'
idea.h => ../../include/openssl/idea.h
ideatest.c => ../../test/ideatest.c
make[2]: Leaving directory `/home/primal/openssl-1.0.0c/crypto/idea'
making links in crypto/bf..
在运行 make all 命令时,我收到以下消息
making all in crypto/idea...
make[2]: Entering directory `/home/primal/openssl-1.0.0c/crypto/idea'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/primal/openssl-1.0.0c/crypto/idea'
任何有关如何向 openssl 添加 idea 支持的帮助将不胜感激。
I was trying to use idea encryption module in openssl. After installing openssl, while listing cipher commands, IDEA was absent there. The source does contain idea folder in crypto folder. While configuring the following message is displayed in terminal corresponding to configuring idea
making links in crypto/idea...
make[2]: Entering directory `/home/primal/openssl-1.0.0c/crypto/idea'
idea.h => ../../include/openssl/idea.h
ideatest.c => ../../test/ideatest.c
make[2]: Leaving directory `/home/primal/openssl-1.0.0c/crypto/idea'
making links in crypto/bf..
While running make all command I got the following message
making all in crypto/idea...
make[2]: Entering directory `/home/primal/openssl-1.0.0c/crypto/idea'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/primal/openssl-1.0.0c/crypto/idea'
Any help on how to add idea support to openssl would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以尝试按照此链接中的建议进行操作,即
MAKE_IDEA变量必须在 make.conf 中设置。
Perhaps you can try following the suggestion in this link, which is
MAKE_IDEA variable must be set in make.conf.