├── .gitignore ├── .travis.yml ├── AUTHORS.md ├── LICENSE ├── README.md ├── ci ├── dist.ini ├── examples ├── README.md ├── guard.lua └── redjwt.lua ├── lib └── resty │ ├── evp.lua │ ├── jwt-validators.lua │ └── jwt.lua ├── lua-resty-jwt-dev-0.rockspec ├── t ├── function-secret.t ├── load-verify-jwe.t ├── load-verify.t ├── sign-verify.t ├── validate-jwt.issuer.t ├── validate-jwt.lifecycle.t ├── validate-jwt.t ├── validators.t ├── verify.claims.issuer.t └── verify.claims.lifecycle.t ├── testcerts ├── README.md ├── cert.pem ├── privatekey.pem ├── pubkey.pem └── root.pem └── vendor ├── README.md └── resty └── hmac.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *swp 2 | t/servroot 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/README.md -------------------------------------------------------------------------------- /ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/ci -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/dist.ini -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/guard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/examples/guard.lua -------------------------------------------------------------------------------- /examples/redjwt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/examples/redjwt.lua -------------------------------------------------------------------------------- /lib/resty/evp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/lib/resty/evp.lua -------------------------------------------------------------------------------- /lib/resty/jwt-validators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/lib/resty/jwt-validators.lua -------------------------------------------------------------------------------- /lib/resty/jwt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/lib/resty/jwt.lua -------------------------------------------------------------------------------- /lua-resty-jwt-dev-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/lua-resty-jwt-dev-0.rockspec -------------------------------------------------------------------------------- /t/function-secret.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/function-secret.t -------------------------------------------------------------------------------- /t/load-verify-jwe.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/load-verify-jwe.t -------------------------------------------------------------------------------- /t/load-verify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/load-verify.t -------------------------------------------------------------------------------- /t/sign-verify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/sign-verify.t -------------------------------------------------------------------------------- /t/validate-jwt.issuer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/validate-jwt.issuer.t -------------------------------------------------------------------------------- /t/validate-jwt.lifecycle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/validate-jwt.lifecycle.t -------------------------------------------------------------------------------- /t/validate-jwt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/validate-jwt.t -------------------------------------------------------------------------------- /t/validators.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/validators.t -------------------------------------------------------------------------------- /t/verify.claims.issuer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/verify.claims.issuer.t -------------------------------------------------------------------------------- /t/verify.claims.lifecycle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/t/verify.claims.lifecycle.t -------------------------------------------------------------------------------- /testcerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/testcerts/README.md -------------------------------------------------------------------------------- /testcerts/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/testcerts/cert.pem -------------------------------------------------------------------------------- /testcerts/privatekey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/testcerts/privatekey.pem -------------------------------------------------------------------------------- /testcerts/pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/testcerts/pubkey.pem -------------------------------------------------------------------------------- /testcerts/root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/testcerts/root.pem -------------------------------------------------------------------------------- /vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/vendor/README.md -------------------------------------------------------------------------------- /vendor/resty/hmac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLothar/lua-resty-jwt/HEAD/vendor/resty/hmac.lua --------------------------------------------------------------------------------