riverrun / not_qwerty123

Not actively maintained - Password strength checker and random password generator for Elixir
Other
45 stars 11 forks source link

Replace crypto:rand_uniform in the random password module #8

Closed riverrun closed 7 years ago

riverrun commented 7 years ago

crypto:rand_uniform is deprecated, and so we need to find a suitable (cryptographically secure) replacement.

riverrun commented 7 years ago

Resolved in commit 3de185b.

:crypto.rand_uniform was replace with :crypto.rand_seed and Enum.random.