在erlang escript中使用crypto

时间:2015-10-06 20:17:25

标签: cryptography erlang escript

我有一个erlang项目,我将为它生成一个自包含的erlang escript,为此我使用 rebar escriptize ,在我的rebar中添加所有依赖项。 conf和其他一些选项,如你所见

{erl_opts, [{parse_transform, lager_transform}]}.
{lib_dirs,["deps"]}.

{deps, [
{'lager', ".*", {
  git, "git://github.com/basho/lager.git", {tag, "2.0.0"}}
},
{'cowboy', ".*", {
    git, "git://github.com/ninenines/cowboy.git", {tag, "2.0.0-pre.1"}}
},
{'jsx', ".*", {
    git, "git://github.com/talentdeficit/jsx.git", {tag, "v2.0.4"}}
}
]}.


{escript_emu_args, "%%! -smp auto\n"}.
{escript_emu_args, "%%! -pz ../dir-of-some-beams\n"}.
{escript_name, "multiscreen_ws_app"}.
{escript_incl_apps,   [sasl,stdlib,kernel,ranch,crypto,cowlib,cowboy,asn1,public_key,ssl,jsx,compiler    ,syntax_tools,lager,goldrush]}.

当然,我已经在主模块中创建了一个主方法来启动脚本。当我使用 escript multiscreen_ws_app 命令运行generetaed脚本时,我看到我的程序输出很好,但是当我收到我的第一个websocket pagckage并尝试解密它BAM时,它只是不工作我收到了消息:

17:03:30.222 [error] Unable to load crypto library. Failed with error:
"load_failed, Failed to load NIF library c:/Users/alessandro.herculano/Music/mul
tiscreen_ws_app/crypto/priv/lib/crypto: 'Couldn't load the specified method
ecificado.'"
OpenSSL might not be installed on this system.

奇怪的是,它试图在我的脚本文件中搜索,就像它是一个文件夹! c:/Users/alessandro.herculano/Music/multiscreen_ws_app/crypto/priv/lib/crypto但 multiscreen_ws_app 是我的脚本文件!我该怎么做才能让我的脚本在另一个预先定义的位置搜索它?

-------一些可能很重要的要点----

  • 我在Windows 8 x64计算机上运行它
  • 当我在不使用脚本的情况下运行它时,我的应用程序运行得很好
  • 我已经尝试在我的顶部使用代码:add_pathz main指示加密文件夹,但它也没有工作。

1 个答案:

答案 0 :(得分:0)

刚刚找到解决方案,我的错,只需从escript_incl_apps列表中删除“crypto”即可解决问题。