├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── lib ├── index.js ├── parser.js ├── signer.js ├── utils.js └── verify.js ├── package.json └── test ├── convert.test.js ├── dsa_private.pem ├── dsa_public.pem ├── ecdsa_private.pem ├── ecdsa_public.pem ├── header.test.js ├── parser.test.js ├── rsa_private.pem ├── rsa_private_encrypted.pem ├── rsa_public.pem ├── rsa_public_encrypted.pem ├── signer.test.js └── verify.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .nyc_output 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/signer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/lib/signer.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/lib/verify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/package.json -------------------------------------------------------------------------------- /test/convert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/convert.test.js -------------------------------------------------------------------------------- /test/dsa_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/dsa_private.pem -------------------------------------------------------------------------------- /test/dsa_public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/dsa_public.pem -------------------------------------------------------------------------------- /test/ecdsa_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/ecdsa_private.pem -------------------------------------------------------------------------------- /test/ecdsa_public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/ecdsa_public.pem -------------------------------------------------------------------------------- /test/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/header.test.js -------------------------------------------------------------------------------- /test/parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/parser.test.js -------------------------------------------------------------------------------- /test/rsa_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/rsa_private.pem -------------------------------------------------------------------------------- /test/rsa_private_encrypted.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/rsa_private_encrypted.pem -------------------------------------------------------------------------------- /test/rsa_public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/rsa_public.pem -------------------------------------------------------------------------------- /test/rsa_public_encrypted.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/rsa_public_encrypted.pem -------------------------------------------------------------------------------- /test/signer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/signer.test.js -------------------------------------------------------------------------------- /test/verify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chocobozzz/node-http-signature/HEAD/test/verify.test.js --------------------------------------------------------------------------------