laranex / laravel-biometric-auth
A laravel package to provide asymmetric biometric authentication
Installs: 2 872
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 0
Forks: 3
Open Issues: 2
Requires
- php: ^7.0|^8.0
- illuminate/contracts: ^5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.8
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.8
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
This package is auto-updated.
Last update: 2025-05-27 07:01:56 UTC
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.