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

Unified Diff: remoting/host/host_secret.cc

Issue 8734012: Always generate host secrets of correct length. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_secret.cc
diff --git a/remoting/host/host_secret.cc b/remoting/host/host_secret.cc
index 1ed86224e0ad0297214394b46f3ae57125d6d116..ebc224b84af492cbdd6864ebbc9e704f5d827f68 100644
--- a/remoting/host/host_secret.cc
+++ b/remoting/host/host_secret.cc
@@ -4,7 +4,7 @@
#include "remoting/host/host_secret.h"
-#include <vector>
+#include <string>
#include "base/logging.h"
#include "base/rand_util.h"
@@ -17,11 +17,12 @@ namespace {
// 5 digits means 100K possible host secrets with uniform distribution, which
// should be enough for short-term passwords, given that we rate-limit guesses
// in the cloud and expire access codes after a small number of attempts.
-const int kMaxHostSecret = 100000;
+const int kHostSecretLength = 5;
+const char kHostSecretAlphabet[] = "0123456789";
// Generates cryptographically strong random number in the range [0, max).
int CryptoRandomInt(int max) {
- uint64 random_int32;
+ uint32 random_int32;
base::RandBytes(&random_int32, sizeof(random_int32));
return random_int32 % max;
}
@@ -29,7 +30,13 @@ int CryptoRandomInt(int max) {
} // namespace
std::string GenerateSupportHostSecret() {
- return base::IntToString(CryptoRandomInt(kMaxHostSecret));
+ std::string result;
+ int alphabet_size = strlen(kHostSecretAlphabet);
+ result.resize(kHostSecretLength);
+ for (int i = 0; i < kHostSecretLength; ++i) {
+ result[i] = kHostSecretAlphabet[CryptoRandomInt(alphabet_size)];
+ }
+ return result;
}
} // namespace remoting
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698