Skip to content

Instantly share code, notes, and snippets.

@zacck-zz
Created April 2, 2019 12:12
Show Gist options
  • Save zacck-zz/c9e0262a29080396bcf273f9fe50080a to your computer and use it in GitHub Desktop.
Save zacck-zz/c9e0262a29080396bcf273f9fe50080a to your computer and use it in GitHub Desktop.
@chars "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-_?" |> String.split("", trim: true)
@spec generate_hash(integer()) :: String.t()
def generate_hash(length) do
Enum.reduce((1..length), [], fn (_i, acc) ->
[Enum.random(@chars) | acc]
end) |> Enum.join("")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment