
- PHP Tutorial
- PHP - Home
- PHP - Introduction
- PHP - Environment Setup
- PHP - Syntax Overview
- PHP - Variable Types
- PHP - Constants
- PHP - Operator Types
- PHP - Decision Making
- PHP - Loop Types
- PHP - Arrays
- PHP - Strings
- PHP - Web Concepts
- PHP - GET & POST
- PHP - File Inclusion
- PHP - Files & I/O
- PHP - Functions
- PHP - Cookies
- PHP - Sessions
- PHP - Sending Emails
- PHP - File Uploading
- PHP - Coding Standard
- Advanced PHP
- PHP - Predefined Variables
- PHP - Regular Expression
- PHP - Error Handling
- PHP - Bugs Debugging
- PHP - Date & Time
- PHP & MySQL
- PHP & AJAX
- PHP & XML
- PHP - Object Oriented
- PHP - For C Developers
- PHP - For PERL Developers
- PHP Form Examples
- PHP - Form Introduction
- PHP - Validation Example
- PHP - Complete Form
- PHP login Examples
- PHP - Login Example
- PHP - Facebook Login
- PHP - Paypal Integration
- PHP - MySQL Login
- PHP AJAX Examples
- PHP - AJAX Search
- PHP - AJAX XML Parser
- PHP - AJAX Auto Complete Search
- PHP - AJAX RSS Feed Example
- PHP XML Example
- PHP - XML Introduction
- PHP - Simple XML
- PHP - Simple XML GET
- PHP - SAX Parser Example
- PHP - DOM Parser Example
- PHP Frame Works
- PHP - Frame Works
- PHP - Core PHP vs Frame Works
- PHP Design Patterns
- PHP - Design Patterns
- PHP Function Reference
- PHP - Built-In Functions
- PHP Useful Resources
- PHP - Questions & Answers
- PHP - Useful Resources
- PHP - Discussion
PHP - password_get_info Function
The password_get_info() function can return information about a given hash.
Syntax
array password_get_info( string $hash )
When we can pass in a valid hash created by an algorithm supported by password_hash() function, this function can return an array of information about that hash.
The password_get_info() function can return an associative array with three elements: algo, which can match a password algorithm constant, algoName, which has the human-readable name of the algorithm, and options, which can include options provided when calling password_hash() function.
Example 1
<?php $passw01 = "53nh46u74m3nt3"; $hashp01 = password_hash($passw01, PASSWORD_ARGON2ID); echo "PASSWORD<br>" . strlen($passw01) . " characters<br>" . $passw01 . "<br><br>"; echo "HASH<br>" . strlen($hashp01) . " characters<br>" . $hashp01; $hashi01 = password_get_info($hashp01); echo "<br><br>" . $hashi01["algo"]; echo "<br>" . $hashi01["algoName"]; echo "<br>" . $hashi01["options"]["memory_cost"]; echo "<br>" . $hashi01["options"]["time_cost"]; echo "<br>" . $hashi01["options"]["threads"]; ?>
Output
PASSWORD<br>14 characters<br>53nh46u74m3nt3<br><br>HASH<br>97 characters<br>$argon2id$v=19$m=65536,t=4,p=1$OHlpdDY5L1dBZU45WlVRLw$9YpYhG9utMwRtk47QZJnvD05rhtbMZORspDkmmw+8mg<br><br>argon2id<br>argon2id<br>65536<br>4<br>1
Example 2
<?php $passw02 = "53nh46u74m3nt3"; $opts02 = [ "memory_cost" => 512, "time_cost" => 3, "threads" => 3 ]; $hashp02 = password_hash($passw02, PASSWORD_ARGON2ID, $opts02); echo "PASSWORD<br>" . strlen($passw02) . " characters<br>" . $passw02; echo "<br><br>HASH<br>" . strlen($hashp02) . " characters<br>" . $hashp02; $hashi02 = password_get_info($hashp02); echo "<br><br>" . $hashi02["algo"]; echo "<br>" . $hashi02["algoName"]; echo "<br>" . $hashi02["options"]["memory_cost"]; echo "<br>" . $hashi02["options"]["time_cost"]; echo "<br>" . $hashi02["options"]["threads"]; ?>
Output
PASSWORD<br>14 characters<br>53nh46u74m3nt3<br><br>HASH<br>95 characters<br>$argon2id$v=19$m=512,t=3,p=3$bkZ1ZXZGTC5rblR0VllzTQ$WNcQuJK4QkV0qbPuRSjeBdy8ihGRsOp02CyFClPVCOU<br><br>argon2id<br>argon2id<br>512<br>3<br>3
php_function_reference.htm
Advertisements