dangoscomb / securid
Implementation of the RSA SecurID Authentication API
0.1.2
2017-05-31 11:49 UTC
Requires
- guzzlehttp/guzzle: 6.1.*
- ramsey/uuid: ^3.6
This package is not auto-updated.
Last update: 2025-06-18 04:47:17 UTC
README
A quick and dirty implementation of the RSA Authentication Manager API in PHP.
Installation
The preferred method of installation is via [Packagist][] and [Composer][]. Run the following command to install the package and add it as a requirement to your project's composer.json
:
composer require dangoscomb/securid
Example
$sess = new \SecurID\Session('AGENT_ID','https://rsa.yourdomain.com:5555','ACCESS_KEY', [ 'verify' => false ] ); $sess->init('USERNAME'); if($sess->verify('PIN+KEY')) { echo "\nAUTHED\n"; } else { echo "\nFAIL :(\n"; }