Package Data | |
---|---|
Maintainer Username: | Sukohi |
Maintainer Contact: | capilano.sukohi@gmail.com (Sukohi) |
Package Create Date: | 2014-10-15 |
Package Last Update: | 2017-01-31 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:17:19 |
Package Statistics | |
---|---|
Total Downloads: | 47 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
A PHP package mainly developed for Laravel to verify simply.
(This is for Laravel 5+. For Laravel 4.2)
Add this package name in composer.json
"require": {
"sukohi/mtriv": "2.*"
}
Execute composer command.
composer update
Register the service provider in app.php
'providers' => [
...Others...,
Sukohi\Mtriv\MtrivServiceProvider::class,
]
Also alias
'aliases' => [
...Others...,
'Mtriv' => Sukohi\Mtriv\Facades\Mtriv::class
]
At first generate public key using secret key, string and expiration(skippable) like the following.
$str = 'STRING, ID and so on...';
$expiration = time(); // Skippable
$public_key = \Mtriv::secretKey('SECRET_KEY')->publicKey($str, $expiration);
and then you can verify.
if(\Mtriv::secretKey('SECRET_KEY')->check($str, $public_key, $expiration)) {
echo 'success!';
}
This package is licensed under the MIT License.
Copyright 2014 Sukohi Kuhoh