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

Unified Diff: chrome/browser/autofill/password_generator.cc

Issue 10458018: This CL does the following: (1) Pass the max_length attribute to the password generator; (2) Update… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a windows UI bug. Created 8 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
Index: chrome/browser/autofill/password_generator.cc
diff --git a/chrome/browser/autofill/password_generator.cc b/chrome/browser/autofill/password_generator.cc
index 3361fb47d1dc4df19cc243c45dcd5fe97c3f1b2d..9df082cd8a18302b9abdbcd158b4ee9f058dd069 100644
--- a/chrome/browser/autofill/password_generator.cc
+++ b/chrome/browser/autofill/password_generator.cc
@@ -4,21 +4,106 @@
#include "chrome/browser/autofill/password_generator.h"
+#include <algorithm>
+#include <vector>
+
+#include "base/basictypes.h"
+#include "base/logging.h"
#include "base/rand_util.h"
const int kMinChar = 33; // First printable character '!'
const int kMaxChar = 126; // Last printable character '~'
-const int kPasswordLength = 12;
+const int kMinUpper = 65; // First upper case letter 'A'
+const int kMaxUpper = 90; // Last upper case letter 'Z'
+const int kMinLower = 97; // First lower case letter 'a'
+const int kMaxLower = 122; // Last lower case letter 'z'
+const int kMinDigit = 48; // First digit '0'
+const int kMaxDigit = 57; // Last digit '9'
+// Copy of the other printable symbols from the ASCII table since they are
+// disjointed.
+const char kOtherSymbols[] =
+ {'!', '\"', '#', '$', '%', '&', '\'', '(',
+ ')', '*', '+', ',', '-', '.', '/', ':',
+ ';', '<', '=', '>', '?', '@', '[', '\\',
+ ']', '^', '_', '`', '{', '|', '}', '~'};
+const size_t kMinPasswordLength = 4;
+const size_t kMaxPasswordLength = 15;
+
+namespace {
+
+// A helper function to get the length of the generated password from
+// |max_length| retrieved from input password field.
+size_t GetLengthFromHint(size_t max_length, size_t default_length) {
+ if (max_length >= kMinPasswordLength && max_length <= kMaxPasswordLength)
+ return max_length;
+ else
+ return default_length;
+}
+
+// Classic algorithm to randomly select |num_select| elements out of
+// |num_total| elements. One description can be found at:
+// "http://stackoverflow.com/questions/48087/select-a-random-n-elements-from-listt-in-c-sharp/48089#48089"
+void GetRandomSelection(size_t num_to_select,
+ size_t num_total,
+ std::vector<size_t>* selections) {
+ DCHECK_GE(num_total, num_to_select);
+ size_t num_left = num_total;
+ size_t num_needed = num_to_select;
+ for (size_t i = 0; i < num_total && num_needed > 0; ++i) {
+ // we have probability = |num_needed| / |num_left| to select
+ // this position.
+ size_t probability = base::RandInt(0, num_left - 1);
+ if (probability < num_needed) {
+ selections->push_back(i);
+ --num_needed;
+ }
+ --num_left;
+ }
+ DCHECK_EQ(num_to_select, selections->size());
+}
+
+} // namespace
namespace autofill {
-PasswordGenerator::PasswordGenerator() {}
+const size_t PasswordGenerator::kDefaultPasswordLength = 12;
+
+PasswordGenerator::PasswordGenerator(size_t max_length)
+ : password_length_(GetLengthFromHint(max_length, kDefaultPasswordLength)) {}
PasswordGenerator::~PasswordGenerator() {}
-std::string PasswordGenerator::Generate() {
+std::string PasswordGenerator::Generate() const {
std::string ret;
- for (int i = 0; i < kPasswordLength; i++) {
- ret.push_back(static_cast<char>(base::RandInt(kMinChar, kMaxChar)));
+ // First, randomly select 4 positions to hold one upper case letter,
+ // one lower case letter, one digit, and one other symbol respectively,
+ // to make sure at least one of each category of characters will be
+ // included in the password.
+ std::vector<size_t> positions;
+ GetRandomSelection(4u, password_length_, &positions);
+
+ // To enhance the strengh of the password, we random suffle the positions so
+ // that the 4 catagories can be put at a random position in it.
+ std::random_shuffle(positions.begin(), positions.end());
+
+ // Next, generate each character of the password.
+ for (size_t i = 0; i < password_length_; ++i) {
+ if (i == positions[0]) {
+ // Generate random upper case letter.
+ ret.push_back(static_cast<char>(base::RandInt(kMinUpper, kMaxUpper)));
+ } else if (i == positions[1]) {
+ // Generate random lower case letter.
+ ret.push_back(static_cast<char>(base::RandInt(kMinLower, kMaxLower)));
+ } else if (i == positions[2]) {
+ // Generate random digit.
+ ret.push_back(static_cast<char>(base::RandInt(kMinDigit, kMaxDigit)));
+ } else if (i == positions[3]) {
+ // Generate random other symbol.
+ ret.push_back(
+ kOtherSymbols[base::RandInt(0, arraysize(kOtherSymbols) - 1)]);
+ } else {
+ // Generate random character from all categories.
+ ret.push_back(static_cast<char>(base::RandInt(kMinChar, kMaxChar)));
+ }
}
return ret;
}
« no previous file with comments | « chrome/browser/autofill/password_generator.h ('k') | chrome/browser/autofill/password_generator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698