lua 的 slncrypto 库
有人让 lua 工作的“slncrypto”吗?
“加密”模块似乎总是丢失,我在任何下载中都找不到它,也没有包含任何 dll。
Has anyone gotten "slncrypto" for lua to work?
Always the "crypto" module seems to be missing and I can't find it in any downloads nor are there any dlls included.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从
slncrypt.c
创建一个名为crypto
的 .dll 或 .so,因为此 C 文件导出luaopen_crypto
。然后你就需要require“crypto”
。测试程序在 http://files.luaforge.net/releases/sln/slncrypto/1.1当我完成这一切时, 对我来说效果很好。You need to create a .dll or .so named
crypto
fromslncrypt.c
because this C file exportsluaopen_crypto
. Then you dorequire"crypto"
. The test program in http://files.luaforge.net/releases/sln/slncrypto/1.1 works fine for me when I do all this.