Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saturngod/cqjwt
Sample JWT for PHP
https://github.com/saturngod/cqjwt
Last synced: 26 days ago
JSON representation
Sample JWT for PHP
- Host: GitHub
- URL: https://github.com/saturngod/cqjwt
- Owner: saturngod
- Created: 2019-09-21T21:41:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T21:42:43.000Z (over 5 years ago)
- Last Synced: 2024-10-15T02:11:37.397Z (2 months ago)
- Language: PHP
- Size: 1000 Bytes
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example
```php
$d = new CQJWT();
$m = $d->getToken("hello", "World", "abc");
var_dump($m);
var_dump($d->verify($m, "abc"));
```