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

..08-Nov-2019-

crypto/H08-Nov-2019-669443

jws/H08-Nov-2019-1,347851

jwt/H08-Nov-2019-500302

.gitignoreH A D08-Nov-2019285 3022

.travis.ymlH A D08-Nov-2019133 1510

LICENSEH A D08-Nov-20191.1 KiB2317

README.mdH A D08-Nov-20191.1 KiB4127

_test.shH A D08-Nov-201994 85

base64.goH A D08-Nov-20191.3 KiB4528

doc.goH A D08-Nov-2019121 41

header.goH A D08-Nov-20192.8 KiB12587

time.goH A D08-Nov-2019118 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