php-jws:JSON Web签名(JWS)PHP实现

时间:2024-06-11 18:12:59
【文件属性】:

文件名称:php-jws:JSON Web签名(JWS)PHP实现

文件大小:15KB

文件格式:ZIP

更新时间:2024-06-11 18:12:59

PHP

JSON Web签名(JWS)PHP库 一个基于JWS草案的JWS的简单且可扩展PHP实现]( )。 笔记 库更适用于JSON WEB TOKEN(JWT)解决方案 安装 推荐的安装gamegos / jws的方法是通过 。 { " require " : { " gamegos/jws " : " ~1.0 " } } 基本用法 编码方式 $ headers = array ( 'alg' => 'HS256' , //alg is required. see *Algorithms* section for supported algorithms 'typ' => 'JWT' ); // anything that json serializable $ payload = array ( 'sub' => 'someon


【文件预览】:
php-jws-master
----.gitignore(104B)
----src()
--------Exception()
--------Util()
--------JWS.php(6KB)
--------Algorithm()
----LICENSE(1KB)
----composer.json(558B)
----examples()
--------rsa_privatekey.pem(887B)
--------hmac.php(646B)
--------rsa.php(885B)
--------rsa_publickey.pem(272B)
----README.md(4KB)
----tests()
--------test_privatekey.pem(887B)
--------test_publickey.pem(272B)
--------bootstrap.php(55B)
--------JWSTest.php(4KB)
----phpunit.xml.dist(499B)

网友评论