Algorithms Arrays Passwords Uncategorized
Commerce Uncategorized
Databases Abstraction Layers Informix LDAP MS SQL MySQL ODBC PostgreSQL Uncategorized
Date & Time Calculators Conversion Translation Uncategorized
Discussion Chat Forums Guestbooks Polls Uncategorized
Email Validation Uncategorized
External Uncategorized
Files and Directories Uncategorized
Games Uncategorized
Graphics 3-D Graphs Resizing Thumbnails Uncategorized
HTML Forms Menus & Navigation Source Viewers Tables Templates Uncategorized
HTTP Authentication Cookies File Uploading Uncategorized
I18N Uncategorized
Math Uncategorized
Miscellaneous Uncategorized
Searching and Trees Uncategorized
Security Uncategorized
Text Uncategorized
Utilities Calendars Counters Link Checkers Weather Uncategorized
XML Uncategorized
| php sample source codes |
|---|
|
A simple random password generation function which generates various length (up to 32 characters) of password with numerals and alphabets.
|
|
This code scriptlet will generate passwords comprising of numerals, alphabates and underscore of varying length.
|
|
This is crazy pass generator && hash algorithm
|
|
A simple snippet to generate a random password that changes daily. * Note: The password will always be the same when generated during the same day with the same settings. Ideal for daily access codes etc.
|
|
A function that can create random passwords, or passwords based on words from a file.
|
|
Very easy password generation (2 example)
|
|
This snippet allows username/password authentication to be checked against a MYSQL database.
The username/password combination could be entered via a form, standard HTTP authentication or a cookie.
|
|
adds a 100+ character string (length up to user after editing the key) and base64 encodes it, giving us LOTS of nice random letters and random case and various other characters, with the default key its over 150 characters long after base64'd. then turned into a 32 char md5 hash.
Why is this good? Well if someone happens to steal the hash in some way, it would take a super computer to break that 150+ character password full of random case letters and more.
|
|
A very simple passwordcheck. You can add more security by adding crypto to your password listed in the plain-text file.
|
|
Password Generator - contains numbers and alphabates.
|
|
Password generation which has numbers alphabets and underscores.
|
|
Modified santos_raj Auto Password Generation. Change $len to got other length (default 8 chars)
|
|
Password protection based in *.php file
|
|
Module for generation of passwords based on different schemes from the more easy to the extreme passwords.
Useful for autogeneration of passwords, for validationlinks ect.
|
|
A simple function which returns an autogenerated random alphanumerical password with the specified length.
|
|
Function to get a random ASCII Key, usefull to get a Primary Key, or get a password,...
The length can be passed as argument
|
|
Cool....no hassle.....you can generate a password which consits a couple of words we use in our daily life
|
|
A function that randomizes a password string from an array.
|
|
a simple function that can generate a random password/verification code to an unlimited number of chars by modifying make_password(int).
|
|
Generates a random password of 8 characters. (can be changed)
|
|
This function generates random pronounceable passwords. (ie jachudru, cupheki)
|
|
Creates a password of the form Word(Number)Word(..NumberWord..)
|
|
This simple function returns a randomly generated password ideal for websites which auto-generate their user's passwords.
I have created it such that it excludes certain characters which may look ambiguous on a webpage i, I, 1, | etc. This you may customize.
|
|
Quick little class to authenticate a username/password off of a PDC.
|
|
The code listing provides a function and its implementation. This password generator accepts two optional parameters, length and number of numbers.
|
|
Function will generate a random password with a default length of 8 or a user supplied length. Password will contain special characters, integers, and upper and lowercase characters.
|
|
Function, returning a string of length(n) containing random chracters and numbers (specified in array).
|
|
This little function returns a unique time-stamp (microtime) based password/ID (8-digits).
|
|
A simple and 'quick' random password generator of any length.
|