fidelize/jwt-auth-multiple-keys

Add multiple keychain support to tymon/jwt-auth package
16,620
Install
composer require fidelize/jwt-auth-multiple-keys
Latest Version:4.2.0
PHP:>=7.0
License:MIT
Last Updated:Jul 26, 2023
Links: GitHub  ·  Packagist
Maintainer: alanwillms

JWT Auth with Multiple Keys

This is an extension of tymon/jwt-auth, adding support to:

  • Replace deprecated namshi/jose with lcobucci/jwt
  • JWT with key pairs instead of a secret
  • Validate a JWT against multiple public keys
  • Use JWT secret as a fallback

Installing

Firstly, you must install tymon/jwt-auth.

Add this package through Composer: composer require "fidelize/jwt-auth-multiple-keys"

Edit your config/jwt.php file adding/editing these lines:

<?php
return [
    // ...
    'providers' => [
        // ...
        'jwt' => 'Fidelize\JWTAuth\JwtAdapter',
        'auth' => 'Fidelize\JWTAuth\AuthAdapter',
        // ...
    ],
    'keys_directory' => '/path/yo/your/keys/directory/'
];
?>
# Don't add a passphrase!
ssh-keygen -t rsa -b 4096 -f keys/jwt.app.key
openssl rsa -in keys/jwt.wholesaler.key -pubout -outform PEM -out keys/jwt.app.key.pub

Warning

Keys must follow the pattern name key.*.key and key.*.key.pub

TODO List

  • Support different name patterns
  • Add command to generate keys

Related Packages

auth0/login

Auth0 Laravel SDK. Straight-forward and tested methods for implementing authenti...

5,670,968 274
u-paid/laravel_jwt_auth

JSON Web Token Authentication for Laravel 4 and 5

5,938 0
johnturingan/laravel-jwt-auth

JSON Web Token Authentication for Laravel 4 and 5. Modification from Tymon's jwt...

4,455 0
tymon/jwt-auth

JSON Web Token Authentication for Laravel and Lumen

54,298,365 11,494
thecsea/jwt-auth

JSON Web Token Authentication for Laravel 4 and 5

724 0