bitbeans / Yubikey by bitbeans

Yubikey for Laravel 5
82,843
42
7
Package Data
Maintainer Username: bitbeans
Maintainer Contact: jonathan@monarobase.net (Jonathan Thuau)
Package Create Date: 2015-04-23
Package Last Update: 2021-08-03
Language: PHP
License: MIT
Last Refreshed: 2024-04-12 03:06:54
Package Statistics
Total Downloads: 82,843
Monthly Downloads: 2,489
Daily Downloads: 99
Total Stars: 42
Total Watchers: 7
Total Forks: 8
Total Open Issues: 0

Yubikey

Yubikey for Laravel 5

This package is based on the Laravel 4 package by Monarobase.

Buy a Yubikey

Yubico API Key Generator

Installation

Add bitbeans/yubikey to composer.json.

"bitbeans/yubikey": "dev-master"

Run composer update to pull down the latest version of Yubikey.

Now open up /config/app.php and add the service provider to your providers array.

'providers' => [
	Bitbeans\Yubikey\YubikeyServiceProvider::class,
]

And also the alias.

'aliases' => [
	'Yubikey' => Bitbeans\Yubikey\YubikeyFacade::class,
]

You can easily integrate the Yubikey Verification into your authentication system in two steps :

  • Add a field (eg yubikey_identity) in your user table
  • now check your user with username/email + password + yubikey_identity

Configuration

Run php artisan vendor:publish and modify the config file (PROJECTFOLDER/config/yubikey.php) with your own information.

Example

use YubiKey;

try {
	$yubikey_auth = Yubikey::verify(Input::get('otp'));
	$yubikey_params = Yubikey::getParameters();
	$yubikey_identity = Yubikey::getParameter('identity');
} catch (\Exception $exception) {
	$error = $e->getMessage();
}