paragonie / multi-factor
Vendor-agnostic two-factor authentication library
Installs: 182 680
Dependents: 2
Suggesters: 0
Security: 0
Stars: 142
Watchers: 16
Forks: 20
Open Issues: 8
Requires
- php: ^7
- bacon/bacon-qr-code: ^1
- paragonie/constant_time_encoding: ^2
Requires (Dev)
- phpunit/phpunit: 4.*|5.*
This package is auto-updated.
Last update: 2024-11-15 14:07:33 UTC
README
Designed to be a vendor-agnostic implementation of various Two-Factor Authentication solutions.
Developed by Paragon Initiative Enterprises for use in our own projects. It's released under a dual license: GPL and MIT. As with all dual-licensed projects, feel free to choose the license that fits your needs.
Requirements
- PHP 7.2+
- As per Paragon Initiative Enterprise's commitment to open source, all new software will no longer be written for PHP 5.
Installing
composer require paragonie/multi-factor
Example Usage
<?php use ParagonIE\MultiFactor\OneTime; use ParagonIE\MultiFactor\OTP\TOTP; $seed = random_bytes(20); // You can use TOTP or HOTP $otp = new OneTime($seed, new TOTP()); if (\password_verify($_POST['password'], $storedHash)) { if ($otp->validateCode($_POST['2facode'], time())) { // Login successful } }