jsonwebtoken/README.md

7 lines
119 B
Markdown
Raw Normal View History

2015-10-31 11:37:15 -04:00
# JWT
```
JWT::encode(payload, secret, algo) -> Result<String>
JWT::decode(token, secret, algo) -> Result<Claims>
```