我需要在Elixir中计算一个文件的md5总和,如何才能实现这一点?我希望这样的东西:
iex(15)> {:ok, f} = File.open "file"
{:ok, #PID<0.334.0>}
iex(16)> :crypto.hash(:md5, f)
** (ArgumentError) argument error
:erlang.iolist_to_binary(#PID<0.334.0>)
(crypto) crypto.erl:225: :crypto.hash/2
但显然它不起作用..
Mix.Utils的文档介绍了read_path/2,但它也不起作用。
iex(22)> Mix.Utils.read_path("file", [:sha512])
{:ok, "Elixir"} #the expected was {:checksum, "<checksum_value>"}
是否有任何库以简单的方式提供此类功能?
4条答案
按热度按时间c2e8gylq1#
In case anyone else finds this question and misses @FredtheMagicWonderDog's comment . . .
Check out this blog posting: http://www.cursingthedarkness.com/2015/04/how-to-get-hash-of-file-in-exilir.html
And here's the relevant code:
NB: I'm posting this as community wiki. I'm not trying to get rep points; just trying to ensure the answer isn't buried in comments.
knsnq2tg2#
这也可以完成工作:
同一文件上的md5sum程序返回:
我已经使用了Ryan在上面的注解中提供的信息,并添加了Base.encode16以获得最终结果。
aiqt4smr3#
我不知道elixir,但在erlang中,
crypto:hash/2
接受iodata,而文件句柄不是。您需要读取文件并将内容传递给hash()。如果您知道文件相当小,{ok, Content} = file:read_file("file")
(或elixir等效函数)就可以做到这一点。n3ipq98p4#
除了@aeliton解决方案简洁漂亮外,它还拥有最好的性能。