Skip to content

Instantly share code, notes, and snippets.

@10nin
Created June 5, 2013 11:52
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save 10nin/5713366 to your computer and use it in GitHub Desktop.
Save 10nin/5713366 to your computer and use it in GitHub Desktop.
Get MD5 message digest by elixir-lang.
defmodule Crypto do
def md5(s) do
list_to_binary(Enum.map(bitstring_to_list(:crypto.md5(s)), fn(x) -> integer_to_binary(x, 16) end))
end
end
@zhangsoledad
Copy link

@bheeshmar awesome

@divmgl
Copy link

divmgl commented Apr 9, 2016

@bheeshmar you win the internet. thanks for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment