Edit
by mzer terungwa - 8 years ago (2017-02-11)
A random API key generator to server as access restriction to AP
| I have created a restful API for a hosted service. To restrict indiscriminate access to the API, each client must submit an API key to be authenticated. I need a nice PHP class for this if any. |
Ask clarification
3 Recommendations
PHP GUID Generator: Generate a globally unique identifier string
This class can generate a globally unique identifier string.
The class can check if the MicroSoft Windows COM extension function com_create_guid exists and use it to generate a GUID string that represents an 128 bit number.
If the com_create_guid does not exist, the package can generate a GUID string using pure PHP functions available in all platforms.
| by John Conde package author 90 - 4 years ago (2020-06-17) Comment
The GUID Generator class creates a globally unique identifier that is ideal for API keys. GUIDs, also known ad UUIDs (Universally Unique IDs) are used in enterprise applications to provide a virtually guaranteed unique identifier for your users, as database keys, component identifiers, or just about anywhere else a unique identifier is required.
IDs are so unique that if everyone in the world generated 600,000,000 GUIDs there is a 50% chance that ONE key will be duplicated. |
Riddler: Generate passwords according to given criteria
This class can generate passwords according to given criteria.
It can generate text strings that may vary in different aspects using specific classes that define criteria for the characters of the text string.
Currently it provides classes for defining criteria that can be of type contracts, dictionaries, formats, and occurrences.
| by DeGraciaMathieu package author 90 - 7 years ago (2018-02-06) Comment
Hello,
You can create random token with this package |
- 1 Comment
3.
by Felicia Kelley - 6 years ago (2018-05-02) in reply to comment 2 by DeGraciaMathieu Reply
Great job
Class that generates HTML forms supporting:
- Multiple inputs may be interconnected in such way that client side events that occur on one input can trigger actions on the context of other inputs. Developers may use input interconnection support without writing Javascript code.
- Can be extended with new types of input controls plug-in classes.
- Custom input plug-in classes can be used to support for handling client site events on the server side without submitting the form or redrawing the whole form page
- Some control plug-in classes are made available:
* AJAX based form submission (without reloading the whole page)
* Auto-complete text inputs
* Select a location on a map using Google Maps API
* Calendar date input
* CAPTCHA test to prevent automated access by robots
* Linked select input to switch select options when the value of another input changes. An unlimited number of selected can be linked in cascade. Additional plug-in subclasses are provided to retrive option groups from a MySQL database or many other SQL databases using the Metabase PEAR::MDB2 PHP database abstraction layer APIs
* Manage animations that apply visual effects to the page form elements, like: fade-in, fade-out, show, hide, update content, etc..
- XHTML compliant output.
- Load submitted form field values even with register_globals option Off and strip slashes when magic_quotes_gpc option is On.
- Keyboard navigation support:
* Attachment of labels with activation keys to each form field.
* Tab navigation order index.
- Built-in server side (PHP based) and client side (Javascript 1.0 or better) field validation for:
* E-mail address
* Credit card numbers (Visa, Mastercard, American Express, Discover, Diners Club, Carte Blanche, enRoute, JCB, any of these or even determined by a select field).
* Regular expressions.
* Field not empty.
* Field equal to another (useful for password confirmation fields).
* Field different from another (useful for reminder fields that must not be equal to the actual password).
* As set (for check boxes, radio buttons and select multiple fields).
* As integer number (with range limitation).
* As floating point number (with range limitation).
* Programmer defined client and server validation functions.
- Highlight invalid fields rendering them distinct CSS styles
- Security attack prevention by optionally discarding invalid values passed in fields that could not be edited by users but may be spoofed by attackers.
- Option to define a value that, when used in a field, it is accepted without performing any of the validations defined for the field.
- Ability to stop the user from submiting a form more than once inadvertdly.
- Sub form validation (validate only smaller set of field depending on the submit button that was used).
- Composition and generation of the form HTML output with fields displayed as fully accessible or in read-only mode.
- Generation of Javascript functions (useful to set to the page ONLOAD event):
* Set the input focus to a field.
* Select the text of a field.
* Set the input focus and select the text of a field.
* Enable and disable input fields
- Automatic capitalization of the text of a field:
* Upper case.
* Lower case.
* Word initials
- Replacement of text field expressions to perform adjustments like trimming whitespace or auto-complete values based on rules defined by regular expressions
- Compose forms with templates using plain HTML files with embedded PHP code or using the Smarty template engine with a supplied pre-filter plugin
- Etc.
| by tony jabbour 60 - 8 years ago (2017-03-23) Comment
i am using this currently to generate a unique license try to edit it to your needs
function UniqueLicense(){
$Block1 = substr(uniqid(), 8, 5);
$TimeArray = explode('.', microtime());
$TimeArray2 = explode(' ', $TimeArray[1]);
$TimeArray3 = sha1(base_convert($TimeArray2[0] . $TimeArray2[1], 10, 16));
$Block2 = substr($TimeArray3, 5, 5);
$Sub1 = sha1(substr($TimeArray3, 10, 5));
$Sub2 = substr($Sub1,rand(0, strlen($Sub1) - 5),rand(0, strlen($Sub1) - 5) + 5);
$Block3 = substr($Sub2, 0, 5);
$Block4 = substr(rand(),0,5);
//$BlockLicense1 .= $Block1 . '-' . $Block2 . '-' . $Block3 . '-' . $Block4 ;
$char = "0213456789abcdefghijklmnopqrstuvwxyz";
$Block5 =substr(str_shuffle(str_repeat($char, 5)), 0,2);
$Block6 = substr(str_shuffle(str_repeat($char, 5)), 0,2);
$Sub3 = substr(str_shuffle(str_repeat($char, 5)), 0,5);
$sub4 = substr(MD5($Sub3), 10, 5);
//$BlockLicense2 .= $Block5 . '-' . $Block6 . '-' . $Block7 . '-' . $Block8 ;
$Block9 = str_replace(substr($Block4, 3, 2), $Block5, $Block4);
$Block10 = str_replace(substr($Block2, 3, 2), $Block6, $Block2);
$subs = array($Sub3,$sub4,$Block1,$Block3);
$rand = array_rand($subs,2);
$Block11 = $subs[$rand[0]];
$Block12 = $subs[$rand[1]];
$BlockLicense .= $Block9 . '-' . $Block10 . '-' . $Block11 . '-' . $Block12 ;
return strtoupper($BlockLicense);
} |
- 1 Comment
1.
by Manuel Lemos
package author - 8 years ago (2017-03-23) Reply
You are not recommending a package class.