├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── examples └── all.js ├── index.js ├── lib ├── decrypter.js ├── encoder.js ├── hmac.js ├── keys.js └── secrets.js ├── package.json └── test ├── encoder.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/circle.yml -------------------------------------------------------------------------------- /examples/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/examples/all.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/index.js -------------------------------------------------------------------------------- /lib/decrypter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/lib/decrypter.js -------------------------------------------------------------------------------- /lib/encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/lib/encoder.js -------------------------------------------------------------------------------- /lib/hmac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/lib/hmac.js -------------------------------------------------------------------------------- /lib/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/lib/keys.js -------------------------------------------------------------------------------- /lib/secrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/lib/secrets.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/package.json -------------------------------------------------------------------------------- /test/encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/test/encoder.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roylines/node-credstash/HEAD/test/index.js --------------------------------------------------------------------------------