• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..14-Jul-2021-

crypto/H14-Jul-2021-669443

jws/H14-Jul-2021-1,347851

jwt/H14-Jul-2021-500302

.gitignoreH A D14-Jul-2021285 3022

.travis.ymlH A D14-Jul-2021133 1510

LICENSEH A D14-Jul-20211.1 KiB2317

README.mdH A D14-Jul-20211.1 KiB4127

_test.shH A D14-Jul-202194 85

base64.goH A D14-Jul-20211.3 KiB4528

doc.goH A D14-Jul-2021121 41

header.goH A D14-Jul-20212.8 KiB12587

time.goH A D14-Jul-2021118 73

README.md

1JOSE
2============
3[![Build Status](https://travis-ci.org/SermoDigital/jose.svg?branch=master)](https://travis-ci.org/SermoDigital/jose)
4[![GoDoc](https://godoc.org/github.com/SermoDigital/jose?status.svg)](https://godoc.org/github.com/SermoDigital/jose)
5
6JOSE is a comprehensive set of JWT, JWS, and JWE libraries.
7
8## Why
9
10The only other JWS/JWE/JWT implementations are specific to JWT, and none
11were particularly pleasant to work with.
12
13These libraries should provide an easy, straightforward way to securely
14create, parse, and validate JWS, JWE, and JWTs.
15
16## Notes:
17JWE is currently unimplemented.
18
19## Version 0.9:
20
21## Documentation
22
23The docs can be found at [godoc.org] [docs], as usual.
24
25A gopkg.in mirror can be found at https://gopkg.in/jose.v1, thanks to
26@zia-newversion. (For context, see issue #30.)
27
28### [JWS RFC][jws]
29### [JWE RFC][jwe]
30### [JWT RFC][jwt]
31
32## License
33
34[MIT] [license].
35
36[docs]:    https://godoc.org/github.com/SermoDigital/jose
37[license]: https://github.com/SermoDigital/jose/blob/master/LICENSE.md
38[jws]: https://tools.ietf.org/html/rfc7515
39[jwe]: https://tools.ietf.org/html/rfc7516
40[jwt]: https://tools.ietf.org/html/rfc7519
41