Created
December 17, 2022 12:00
-
-
Save vKxni/50070e2b14838fc90711146bea7d6d55 to your computer and use it in GitHub Desktop.
Random Strong bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(bits). | |
-export([gen/0]). | |
gen() -> | |
P = crypto:strong_rand_bytes(16), | |
io:format("~p~n", [P]), | |
gen(). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment