Skip to content

Instantly share code, notes, and snippets.

@tylerhall
Created August 12, 2010 21:38
Show Gist options
  • Save tylerhall/521810 to your computer and use it in GitHub Desktop.
Save tylerhall/521810 to your computer and use it in GitHub Desktop.
A user friendly, strong password generator PHP function.
<?PHP
// Generates a strong password of N length containing at least one lower case letter,
// one uppercase letter, one digit, and one special character. The remaining characters
// in the password are chosen at random from those four sets.
//
// The available characters in each set are user friendly - there are no ambiguous
// characters such as i, l, 1, o, 0, etc. This, coupled with the $add_dashes option,
// makes it much easier for users to manually type or speak their passwords.
//
// Note: the $add_dashes option will increase the length of the password by
// floor(sqrt(N)) characters.
function generateStrongPassword($length = 9, $add_dashes = false, $available_sets = 'luds')
{
$sets = array();
if(strpos($available_sets, 'l') !== false)
$sets[] = 'abcdefghjkmnpqrstuvwxyz';
if(strpos($available_sets, 'u') !== false)
$sets[] = 'ABCDEFGHJKMNPQRSTUVWXYZ';
if(strpos($available_sets, 'd') !== false)
$sets[] = '23456789';
if(strpos($available_sets, 's') !== false)
$sets[] = '!@#$%&*?';
$all = '';
$password = '';
foreach($sets as $set)
{
$password .= $set[array_rand(str_split($set))];
$all .= $set;
}
$all = str_split($all);
for($i = 0; $i < $length - count($sets); $i++)
$password .= $all[array_rand($all)];
$password = str_shuffle($password);
if(!$add_dashes)
return $password;
$dash_len = floor(sqrt($length));
$dash_str = '';
while(strlen($password) > $dash_len)
{
$dash_str .= substr($password, 0, $dash_len) . '-';
$password = substr($password, $dash_len);
}
$dash_str .= $password;
return $dash_str;
}
@offixer
Copy link

offixer commented Aug 17, 2017

@marufnajm
Copy link

A very good script. Thank you so much.

Copy link

ghost commented Nov 6, 2017

thank you 👍

@NikitaShkaruba
Copy link

NikitaShkaruba commented Nov 20, 2017

Thank you dude! vk.com here)

@pishgahi
Copy link

thank you

@fabbro79
Copy link

thanks!

@compermisos
Copy link

make a forked version of this script, whit some improvments in crypt functions

https://gist.github.com/compermisos/cf11aed742d2e1fbd994e083b4b0fa78

Copy link

ghost commented May 11, 2018

See my implementation works with all chars languages.

@DonPramis
Copy link

DonPramis commented Aug 10, 2018

Here is easy https://www.dohangout.com/forum/viewtopic.php?f=23&t=333 no need to create password. 14 million password. Enjoy

@DonPramis
Copy link

DonPramis commented Aug 26, 2018

I generate mine like this... http://tools.webbatlas.com but i need to include few symbols on this project

@Cocoking77
Copy link

Thks a lot

@fmic64
Copy link

fmic64 commented Jun 10, 2020

Great! many many thanks!!!

@madurapa
Copy link

Amazing!

@jamesboss99
Copy link

Very good work. Thanks.

@Adhitya2525
Copy link

Thanks a lot

@agungsp2000
Copy link

thank you kind sir

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment