├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── index.js ├── lib ├── data-stream.js ├── sign-stream.js ├── tostring.js └── verify-stream.js ├── opslevel.yml ├── package.json ├── readme.md └── test ├── data.txt └── jws.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | test/ 3 | .travis.yml 4 | .jshintrc 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/Makefile -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/index.js -------------------------------------------------------------------------------- /lib/data-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/lib/data-stream.js -------------------------------------------------------------------------------- /lib/sign-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/lib/sign-stream.js -------------------------------------------------------------------------------- /lib/tostring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/lib/tostring.js -------------------------------------------------------------------------------- /lib/verify-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/lib/verify-stream.js -------------------------------------------------------------------------------- /opslevel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/opslevel.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/readme.md -------------------------------------------------------------------------------- /test/data.txt: -------------------------------------------------------------------------------- 1 | one, two, three 2 | -------------------------------------------------------------------------------- /test/jws.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-jws/HEAD/test/jws.test.js --------------------------------------------------------------------------------