xaamin/jwt
最新稳定版本:v2.0.2
Composer 安装命令:
composer require xaamin/jwt
包简介
PHP Implementation of JSON Web token with RSA
关键字:
README 文档
README
PHP Implementation of JSON Web token with RSA.
Supported algorithms:
RSA (Public Key/Private Key pair)
RS256 - RSA using SHA-256 hash algorithm
RS384 - RSA using SHA-384 hash algorithm
RS512 - RSA using SHA-512 hash algorithm
HMAC algorithms :
HS256 - HMAC using SHA-256 hash algorithm (default)
HS384 - HMAC using SHA-384 hash algorithm
HS512 - HMAC using SHA-512 hash algorithm
Install
With composer
composer require xaamin/jwt
How to use with RSA public/private key
Set configuration in src/Config/config.php. Don't use key provided here in production.
'algorithm' => 'RS512',
// ... Other stuff here
'keys' => [
'public' => '../keys/public_key.pem',
'private' => '../keys/private_key.pem',
'passphrase' => null,
],
$payload = [ 'sub' => 1, 'username' => 'xaamin' ]; // Generate token $token = Xaamin\JWT\Facade\Native\JWT::encode($payload); // Verify the token try{ $token = Xaamin\JWT\Facade\Native\JWT::decode($token->get()); var_dump($token); } catch (Exception $e) { echo $e->getMessage(); }
How to use with HMAC
Set configuration in src/Config/config.php
'algorithm' => 'HS512',
'secret' => 'some-random-string'
$payload = [ 'sub' => 1, 'username' => 'xaamin' ]; // Generate token $token = Xaamin\JWT\Facade\Native\JWT::encode($payload); // Verify the token try{ $token = Xaamin\JWT\Facade\Native\JWT::decode($token->get()); var_dump($token); } catch (Exception $e) { echo $e->getMessage(); }
统计信息
- 总下载量: 9.92k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-09-12