sukohi/mtriv

A PHP package mainly developed for Laravel to verfy simply.

2.0.1 2017-01-31 09:54 UTC

This package is not auto-updated.

Last update: 2024-04-24 10:57:17 UTC


README

A PHP package mainly developed for Laravel to verify simply.
(This is for Laravel 5+. For Laravel 4.2)

Installation

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
]

Usage

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!';
		
}

License

This package is licensed under the MIT License.

Copyright 2014 Sukohi Kuhoh