Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1189)

Unified Diff: webrtc/base/helpers.h

Issue 2115793003: Check that table evenly divides 256 when generating random string. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/base/helpers.cc » ('j') | webrtc/base/helpers.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/helpers.h
diff --git a/webrtc/base/helpers.h b/webrtc/base/helpers.h
index 0e7937362a334c7cc29bc9a3ff203c1f7fec647c..c7cb65e17be4a27249aaa76d40aaa005e5f41a8b 100644
--- a/webrtc/base/helpers.h
+++ b/webrtc/base/helpers.h
@@ -35,7 +35,7 @@ bool CreateRandomString(size_t length, std::string* str);
// Generates a (cryptographically) random string of the given length,
// with characters from the given table. Return false if the random
-// number generator failed.
+// number generator failed or the table doesn't evenly divide 256.
mattdr-at-webrtc.org 2016/07/01 22:34:22 number generator failed. For ease of implementatio
joachim 2016/07/01 22:37:10 Done.
bool CreateRandomString(size_t length, const std::string& table,
std::string* str);
« no previous file with comments | « no previous file | webrtc/base/helpers.cc » ('j') | webrtc/base/helpers.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698