Packages

Coleção de funções para reutilizar em meus projetos pessoais

Current section

Files

Jump to
sylon_utils lib hash.ex
Raw

lib/hash.ex

defmodule SylonUtils.Hash do
@moduledoc false
def random_string(length) do
:crypto.strong_rand_bytes(length) |> Base.url_encode64() |> binary_part(0, length)
end
end