Add more rules for passwords.

This commit is contained in:
Andrew Tomaka 2011-12-12 17:22:29 -05:00
parent 3acdcf9e08
commit 885829c2e4

View file

@ -3,4 +3,14 @@ var special = new Array();
special['53.com'] = (function(password) {
// 6-12 characters
return password.substr(0,12);
});
special['paypal.com'] = (function(password) {
// 8-20 characters
return password.substr(0,20);
});
special['ebay.com'] = (function(password) {
// 8-20 characters
return password.substr(0,20);
});