TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old 12-10-2007, 02:38 PM   #1 (permalink)
The Wanderer
 
Rizza's Avatar
 
Join Date: Dec 2007
Location: Orlando, FL
Posts: 23
Thanks: 0
Rizza is on a distinguished road
Default Password generator

Figured I'd give away my password generator.

PHP Code:
public function generatePassword($length 10) {
    
// Build an arrays of consonants and vowels
    
$consSingle str_split('bcdghjklmnprstuvw');
    
$consDouble str_split('trcrbrfrthdrchphwrstspswprslcl'2);
    
$cons       array_merge($consSingle$consDouble);
    
$vowels     str_split('aeiou');
    
$numbers    = array(1234567890);
    
    
// Create the random password
    
$password '';
    
srand((double) microtime() * 1000000);
    for (
$i 0$i $length$i++) {
        
// Alternate between upper and lower case
        
$casing = (rand(01))? 'strtoupper' 'strtolower';
        
        
// Construct the password by a series of constanent + number + vowel.
        
$password .= (
            
$casing($consmt_rand(031) ])
            . 
$numbersmt_rand(09) ]
            . 
$casing($vowelsmt_rand(04) ])
        );
    }
    
    
// Cut string and return password to correct length
    
return substr($password0$length);

Usage:

PHP Code:
$pass generatePassword();
$enc md5('pew! pew! pew!' $pass); 
Rizza is offline  
Reply With Quote
The Following User Says Thank You to Rizza For This Useful Post:
Wildhoney (12-10-2007)
 



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 10:02 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design