PHP code example of falgunphp / passta
1. Go to this page and download the library: Download falgunphp/passta library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
falgunphp / passta example snippets
use Falgun\Passta;
use Falgun\Passta\Hash\DefaultHashDriver;
use Falgun\Passta\Random\DefaultRandomGenerator;
$passta = new Passta(
new DefaultHashDriver(),
new DefaultRandomGenerator(),
);
$token = $passta->generate();
/**
* $token object will contain similar to below content
*
* Falgun\Passta\Token\Token Object
* (
* [selector] => 971ee944fec51494dfa82133a4358989
* [verifierHash] => 13e726abb996a3605883e312af1e5b2d97c5d9372927e65896ced931d0bb309c
* [token] => 971ee944fec51494dfa82133a4358989e2f89abe7a7f91ae878f703831852ac0
* )
*
* We need to store both selector & verifierHash in some storage (database) for later usage
* send [token] string to user via mail or other media.
*/
// When user clicks on the link with their [token]
$splitToken = $passta->convertToSplitToken($userProvidedToken);
// $userProvidedToken is the token that we sent to them in previous step
/*
* $splitToken contains a selector and a verifier
* use selector to find verifierHash from storage (database)
* Then attempt to verify the verifierHash with $splitToken
*/
if ($passta->verify($splitToken, $verifierHash)) {
// user provided token is valid
// we can proceed to our domain logic
// don't forget to delete select/verifierHash from storage
} else {
// invalid token
}