Adding basic files · lcobucci/jwt@aad22ed · GitHub
Adding basic files
| @@ -0,0 +1,5 @@ | ||
| +.buildpath | ||
| +.project | ||
| +.settings/ | ||
| +vendor | ||
| +build |
| @@ -1,4 +1,47 @@ | ||
| -jwt | ||
| -=== | ||
| +# JWT | ||
| -A simple library to work with JSON Web Token and JSON Web Signature | ||
| +master [](http://travis-ci.org/#!/lcobucci/jwt) | ||
| +develop [](http://travis-ci.org/#!/lcobucci/jwt) | ||
| + | ||
| +[](https://packagist.org/packages/lcobucci/jwt) | ||
| +[](https://packagist.org/packages/lcobucci/jwt) | ||
| + | ||
| +A simple library to work with JSON Web Token and JSON Web Signature (requires PHP 5.5+) | ||
| + | ||
| +## Instalation | ||
| + | ||
| +Just add to your composer.json: ```"lcobucci/jwt": "1.x"``` | ||
| + | ||
| +## Basic usage | ||
| + | ||
| +### Creating | ||
| + | ||
| +Just use the builder to create a new JWT/JWS tokens: | ||
| + | ||
| +```php | ||
| +<?php | ||
| +use Lcobucci\JWT\Builder; | ||
| +use Lcobucci\JWT\Signer\Sha256; | ||
| + | ||
| +$token = (new Builder())->setIssuer('http://example.com') // Configures the issuer (iss claim) | ||
| + ->setAudience('http://example.org') // Configures the audience (aud claim) | ||
| + ->setId('4f1g23a12aa', true) // Configures the id (jti claim), replicating as a header item | ||
| + ->set('uid', 1) // Configures a new claim, called "uid" | ||
| + ->sign(new Sha256(), 'my key') // Signs the token with HS256 using "my key" as key | ||
| + ->getToken(); // Retrieves the generated token | ||
| + | ||
| +echo $token; // The string representation of the object is a JWT string (pretty easy, right?) | ||
| +``` | ||
| +### Parsing from strings | ||
| + | ||
| +Use the parser to create a new token from a JWT string: | ||
| + | ||
| +```php | ||
| +<?php | ||
| +use Lcobucci\JWT\Parser; | ||
| + | ||
| +$token = (new Parser())->parse('...'); // Parses from a string | ||
| +$token->getHeader(); // Retrieves the token header | ||
| +$token->getClaims(); // Retrieves the token claims | ||
| +$token->verify('my key'); // Verifies if the signature was created with given key (if token is signed) | ||
| +``` |
| @@ -0,0 +1,27 @@ | ||
| +{ | ||
| + "name" : "lcobucci/jwt", | ||
| + "description" : "A simple library to work with JSON Web Token and JSON Web Signature", | ||
| + "type" : "library", | ||
| + "authors" : [{ | ||
| + "name" : "Luís Otávio Cobucci Oblonczyk", | ||
| + "email" : "lcobucci@gmail.com", | ||
| + "role": "Developer" | ||
| + } | ||
| + ], | ||
| + "keywords" : ["JWT", "JWS"], | ||
| + "license" : ["BSD-3-Clause"], | ||
| + "require" : { | ||
| + "php" : ">=5.5" | ||
| + }, | ||
| + "require-dev" : { | ||
| + "phpunit/phpunit" : "4.0.x", | ||
| + "squizlabs/php_codesniffer" : "*", | ||
| + "phpmd/phpmd" : "*" | ||
| + }, | ||
| + "autoload" : { | ||
| + "psr-4" : { | ||
| + "Lcobucci\\JWT\\" : "src", | ||
| + "Lcobucci\\JWT\\Test\\" : "test" | ||
| + } | ||
| + } | ||
| +} |
Large diffs are not rendered by default.
| @@ -0,0 +1,23 @@ | ||
| +<?xml version="1.0" encoding="UTF-8"?> | ||
| +<phpunit | ||
| + colors="true" | ||
| + backupGlobals="false" | ||
| + backupStaticAttributes="false" | ||
| + bootstrap="vendor/autoload.php" | ||
| + strict="true"> | ||
| + <testsuites> | ||
| + <testsuite name="JWT Test Suite"> | ||
| + <directory>test</directory> | ||
| + </testsuite> | ||
| + </testsuites> | ||
| + | ||
| + <filter> | ||
| + <whitelist processUncoveredFilesFromWhitelist="true"> | ||
| + <directory suffix=".php">src</directory> | ||
| + </whitelist> | ||
| + | ||
| + <blacklist> | ||
| + <directory suffix=".php">vendor</directory> | ||
| + </blacklist> | ||
| + </filter> | ||
| +</phpunit> |
Adding basic files · lcobucci/jwt@aad22ed · GitHub的更多相关文章
- Adding Swap Files
Adding Swap Files If you do not have free disk space to create a swap partition and you do need to a ...
- springboot成神之——basic auth和JWT验证结合
本文介绍basic auth和JWT验证结合 目录结构 依赖 config配置文件WebSecurityConfig filter过滤器JWTLoginFilter filter过滤器JWTAuthe ...
- lcobucci/jwt的安装和使用
安装 composer require lcobucci/jwt 3.3 封装 <?php namespace tools\jwt; use Lcobucci\JWT\Builder; use ...
- GitHub - firebase/php-jwt: PEAR package for JWT
PHP-JWT A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 75 ...
- git配置ssh(github)
[参考官方文档] SSH keys are a way to identify trusted computers, without involving passwords. The steps be ...
- JWT(Json Web Token)初探与实践
前言什么是JWT?为什么使用JWT?什么时候使用JWT?JWT的基本结构HeaderPayloadSignature将他们放在一起项目实践JWT后端前端关于安全性总结参考 协议标准:https://t ...
- JWT在PHP使用及问题处理
官网 https://jwt.io/ 3.0版本 https://github.com/lcobucci/jwt 安装 composer require lcobucci/jwt 依赖 PHP 5.5 ...
- API安全验证之JWT(JSON WEB TOKEN) OLCMS
假如www.olcms.com/getUserInfo获取用户信息,你怎么知道当前用户是谁?有人说登陆时候我把他UID写入session了,如果是API接口,没有session怎么办,那么就需要把UI ...
- 基于JWT的Token登录认证(一)
1.JWT简介 JSON Web Token(缩写 JWT),是目前最流行的跨域认证解决方案. session登录认证方案:用户从客户端传递用户名.密码等信息,服务端认证后将信息存储在session中 ...
随机推荐
- 01.visual studio 2017添加菜单
创建项目 文件--新建项目 如果新建项目 左侧没有扩展菜单,请安装即可 添加菜单 右键--添加新项 菜单设置 菜单设置文件: MyCommandPackage.vsct <Buttons> ...
- keil mdk 无法添加对应容量的芯片
如果包已经安装好了 贴到 回到mdk,完事儿
- C#窗体随意移动
//全区域移动 const int WM_NCLBUTTONDOWN = 0xA1; const int HT_CAPTION = 0x2; [DllImport("user32.dll&q ...
- C#用API可以改程序名字
[DllImport("user32.dll", EntryPoint = "FindWindow")] public static extern int Fi ...
- mybatis和hibernate的特点
第一方面:开发速度的对比 就开发速度而言,Hibernate的真正掌握要比Mybatis来得难些.Mybatis框架相对简单很容易上手,但也相对简陋些.个人觉得要用好Mybatis还是首先要先理解好H ...
- 廖雪峰Java11多线程编程-1线程的概念-2创建新线程
Java语言内置多线程支持: 一个Java程序实际上是一个JVM进程 JVM用一个主线程来执行main()方法 在main()方法中又可以启动多个线程 1.创建新线程 1.1 方法一:使用Thread ...
- 廖雪峰Java10加密与安全-4加密算法-4密钥交换算法
1DH算法 1.1.原根公式:g^i mod P 条件:1<g<P,0<i<P 原根:介于[1, p-1]之间的任意2个数i,j(p为素数,i≠j)的结果不相等,即 g^i m ...
- Django项目:CRM(客户关系管理系统)--63--53PerfectCRM实现CRM客户报名流程缴费
#urls.py """PerfectCRM URL Configuration The `urlpatterns` list routes URLs to views. ...
- 2019Python学习路线图
- camtasia Studio 7 的使用
最近领导给了个任务,要把我们的三维应用功能做个视频,好带出去宣传.通过搜索,发现大家都说camtasia Studio好用,很快在网上找到了,与大家分享链接: http://pan.baidu.com ...