├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── binding.gyp ├── index.js ├── package.json └── test ├── index.js └── main.cc /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | build 3 | coverage 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/test/index.js -------------------------------------------------------------------------------- /test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/EVP_BytesToKey/HEAD/test/main.cc --------------------------------------------------------------------------------