diff options
author | Hans Nilsson <[email protected]> | 2017-09-11 15:45:10 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-09-12 13:02:26 +0200 |
commit | 24053bba1d00ee959d2b388b08e1bd845d9c6bfa (patch) | |
tree | 0d83b89ad03e4ea79c0a89b559c5e9d69e68b7e7 /lib/public_key/test | |
parent | 18fb1a9230578456f3d03b4136ed296407bdf53c (diff) | |
download | otp-24053bba1d00ee959d2b388b08e1bd845d9c6bfa.tar.gz otp-24053bba1d00ee959d2b388b08e1bd845d9c6bfa.tar.bz2 otp-24053bba1d00ee959d2b388b08e1bd845d9c6bfa.zip |
public_key: clearify random set bounderys in comments
Diffstat (limited to 'lib/public_key/test')
-rw-r--r-- | lib/public_key/test/erl_make_certs.erl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/public_key/test/erl_make_certs.erl b/lib/public_key/test/erl_make_certs.erl index e4118bab0d..9996f757ca 100644 --- a/lib/public_key/test/erl_make_certs.erl +++ b/lib/public_key/test/erl_make_certs.erl @@ -178,8 +178,13 @@ make_tbs(SubjectKey, Opts) -> _ -> subject(proplists:get_value(subject, Opts),false) end, - - {#'OTPTBSCertificate'{serialNumber = trunc(random:uniform()*100000000)*10000 + 1, + Rnd = trunc(random:uniform()*100000000)*10000 + 1, + %% 0.0 =< random:uniform() < 1.0 + %% => + %% 0.0 =< random:uniform()*100000000 < 100000000.0 + %% => + %% 1 =< Rnd < 1000000000001 + {#'OTPTBSCertificate'{serialNumber = Rnd, signature = SignAlgo, issuer = Issuer, validity = validity(Opts), |