├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── index.js └── utils │ ├── buffer.js │ ├── crypto.js │ ├── index.js │ ├── keys.js │ └── typedArray.js └── test └── implement.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/src/utils/buffer.js -------------------------------------------------------------------------------- /src/utils/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/src/utils/crypto.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/src/utils/keys.js -------------------------------------------------------------------------------- /src/utils/typedArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/src/utils/typedArray.js -------------------------------------------------------------------------------- /test/implement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alax/forward-secrecy/HEAD/test/implement.js --------------------------------------------------------------------------------