mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
3942c97d46
git-svn-id: http://svn.automattic.com/wordpress/trunk@9276 1a063a9b-81f0-0310-95a4-ce76da25c4cd
23 lines
722 B
JavaScript
23 lines
722 B
JavaScript
// Password strength meter
|
|
|
|
function passwordStrength(password,username) {
|
|
var shortPass = 1, badPass = 2, goodPass = 3, strongPass = 4;
|
|
|
|
//password < 4
|
|
if (password.length < 4 ) { return shortPass };
|
|
|
|
//password == username
|
|
if (password.toLowerCase()==username.toLowerCase()) return badPass;
|
|
|
|
var symbolSize = 0;
|
|
if (password.match(/[0-9]/)) symbolSize +=10;
|
|
if (password.match(/[a-z]/)) symbolSize +=26;
|
|
if (password.match(/[A-Z]/)) symbolSize +=26;
|
|
if (password.match(/[^a-zA-Z0-9]/)) symbolSize +=31;
|
|
|
|
var natLog = Math.log( Math.pow(symbolSize,password.length) );
|
|
var score = natLog / Math.LN2;
|
|
if (score < 40 ) return badPass
|
|
if (score < 56 ) return goodPass
|
|
return strongPass;
|
|
} |