Fix strong_rand to rand_bytes

This commit is contained in:
Heinz N. Gies 2017-08-01 11:55:05 +02:00
parent bbe763514b
commit b319386210

View file

@ -42,6 +42,6 @@ seed() ->
random:seed(erlang:phash2(self()), element(2, SW), element(3, SW)).
rand_bytes(Size) ->
crypto:strong_rand(Size).
crypto:rand_bytes(Size).
-endif.