laranex/laravel-biometric-auth
最新稳定版本:v3.0.0
Composer 安装命令:
composer require laranex/laravel-biometric-auth
包简介
A laravel package to provide asymmetric biometric authentication
README 文档
README
Supported Public Keys
https://phpseclib.com/docs/publickeys
Installation
You can install the package via composer:
composer require laranex/laravel-biometric-auth
You can publish and run the migrations with:
php artisan vendor:publish --tag="biometric-auth-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="biometric-auth-config"
This is the contents of the published config file:
<?php return [ 'table' => env('BIOMETRIC_AUTH_TABLE', 'biometrics'), // You will need to be explicit about the encryption padding and hash algorithm when working with RSA keys. // For the rest of the algorithms, the package will automatically detect with the help of phpseclib. 'rsa' => [ 'encryption_padding' => \phpseclib3\Crypt\RSA::SIGNATURE_PKCS1, 'hash_algorithm' => 'sha256', ], ];
Usage
// Use Laranex\LaravelBiometricAuth\Traits\HasBiometrics in your Authenticable Model such as User, Admin class User extends Authenticatable { use Laranex\LaravelBiometricAuth\Traits\HasBiometrics; } // Register a new biometric $user->createBiometric("Base 64 encoded public key"); // Create a challenge for biometric authentication $biometric = Laranex\LaravelBiometricAuth\Facades\LaravelBiometricAuth::getBiometric("UUID of a biometric"); // Verify the signature Laranex\LaravelBiometricAuth\Facades\LaravelBiometricAuth::verifyBiometric("UUID of a biometric", "Signature"); // Get the user of verified biometric key $user = Biometric::find("UUID of a biometric")->instance; // Revoke a biometric $user->revokeBiometric("UUID of a biometric");
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 4.96k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-12-08
