This is an automated email from the ASF dual-hosted git repository. jan pushed a commit to branch one-ex-ex in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit dccb6a193d25bfa551af6ccd1fd26b2fc2357d5a Author: Jan Lehnardt <[email protected]> AuthorDate: Tue Oct 31 21:24:12 2017 +0100 s/crypto:rand_bytes/crypto:strong_rand_bytes/ --- src/couch_replicator/test/couch_replicator_large_atts_tests.erl | 2 +- src/couch_replicator/test/couch_replicator_many_leaves_tests.erl | 2 +- src/couch_replicator/test/couch_replicator_missing_stubs_tests.erl | 2 +- src/mochiweb/mochiweb.erl | 2 +- test/couchdb/couch_work_queue_tests.erl | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/couch_replicator/test/couch_replicator_large_atts_tests.erl b/src/couch_replicator/test/couch_replicator_large_atts_tests.erl index 7c4e334..f810370 100644 --- a/src/couch_replicator/test/couch_replicator_large_atts_tests.erl +++ b/src/couch_replicator/test/couch_replicator_large_atts_tests.erl @@ -176,7 +176,7 @@ att(Name, Size, Type) -> name = Name, type = Type, att_len = Size, - data = fun(Count) -> crypto:rand_bytes(Count) end + data = fun(Count) -> crypto:strong_rand_bytes(Count) end }. find_att([], _Name) -> diff --git a/src/couch_replicator/test/couch_replicator_many_leaves_tests.erl b/src/couch_replicator/test/couch_replicator_many_leaves_tests.erl index 27d51db..eae003e 100644 --- a/src/couch_replicator/test/couch_replicator_many_leaves_tests.erl +++ b/src/couch_replicator/test/couch_replicator_many_leaves_tests.erl @@ -193,7 +193,7 @@ add_attachments(SourceDb, NumAtts, [{DocId, NumConflicts} | Rest]) -> NewDocs = lists:foldl( fun(#doc{atts = Atts, revs = {Pos, [Rev | _]}} = Doc, Acc) -> NewAtts = lists:foldl(fun(I, AttAcc) -> - AttData = crypto:rand_bytes(100), + AttData = crypto:strong_rand_bytes(100), NewAtt = #att{ name = ?io2b(["att_", ?i2l(I), "_", couch_doc:rev_to_str({Pos, Rev})]), diff --git a/src/couch_replicator/test/couch_replicator_missing_stubs_tests.erl b/src/couch_replicator/test/couch_replicator_missing_stubs_tests.erl index 8c64929..5243be5 100644 --- a/src/couch_replicator/test/couch_replicator_missing_stubs_tests.erl +++ b/src/couch_replicator/test/couch_replicator_missing_stubs_tests.erl @@ -121,7 +121,7 @@ should_update_source_docs(Source, Times) -> populate_db(DbName) -> {ok, Db} = couch_db:open_int(DbName, []), - AttData = crypto:rand_bytes(6000), + AttData = crypto:strong_rand_bytes(6000), Doc = #doc{ id = <<"doc1">>, atts = [ diff --git a/src/mochiweb/mochiweb.erl b/src/mochiweb/mochiweb.erl index 250beb5..a157f46 100644 --- a/src/mochiweb/mochiweb.erl +++ b/src/mochiweb/mochiweb.erl @@ -187,7 +187,7 @@ do_POST(Transport, Size, Times) -> end, TestReqs = [begin Path = "/stuff/" ++ integer_to_list(N), - Body = crypto:rand_bytes(Size), + Body = crypto:strong_rand_bytes(Size), #treq{path=Path, body=Body, xreply=Body} end || N <- lists:seq(1, Times)], ClientFun = new_client_fun('POST', TestReqs), diff --git a/test/couchdb/couch_work_queue_tests.erl b/test/couchdb/couch_work_queue_tests.erl index 8a463b5..427be76 100644 --- a/test/couchdb/couch_work_queue_tests.erl +++ b/test/couchdb/couch_work_queue_tests.erl @@ -340,7 +340,7 @@ producer_loop(Parent, Q) -> Parent ! {pong, Ref}, producer_loop(Parent, Q); {produce, Ref, Size} -> - Item = crypto:rand_bytes(Size), + Item = crypto:strong_rand_bytes(Size), Parent ! {item, Ref, Item}, ok = couch_work_queue:queue(Q, Item), producer_loop(Parent, Q) -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
