├── .gitignore ├── .travis.yml ├── README.md ├── package.json ├── src ├── __snapshots__ │ ├── index.test.js.snap │ └── rclone.test.js.snap ├── ciphers │ ├── FileCipher.js │ ├── FileCipher.test.js │ ├── PathCipher.js │ ├── PathCipher.test.js │ ├── PushStream.js │ ├── __fixtures__ │ │ └── FileCipher │ │ │ ├── nonceTest │ │ │ ├── nonceTest.decrypted │ │ │ ├── test │ │ │ └── test.png │ ├── __snapshots__ │ │ ├── FileCipher.test.js.snap │ │ └── PathCipher.test.js.snap │ ├── eme │ │ └── index.js │ └── text-encoding.js ├── constants.js ├── index.js ├── index.test.js ├── rclone.js ├── rclone.test.js ├── reveal.js └── reveal.test.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | dist 4 | .vscode -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/__snapshots__/rclone.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/__snapshots__/rclone.test.js.snap -------------------------------------------------------------------------------- /src/ciphers/FileCipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/FileCipher.js -------------------------------------------------------------------------------- /src/ciphers/FileCipher.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/FileCipher.test.js -------------------------------------------------------------------------------- /src/ciphers/PathCipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/PathCipher.js -------------------------------------------------------------------------------- /src/ciphers/PathCipher.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/PathCipher.test.js -------------------------------------------------------------------------------- /src/ciphers/PushStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/PushStream.js -------------------------------------------------------------------------------- /src/ciphers/__fixtures__/FileCipher/nonceTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/__fixtures__/FileCipher/nonceTest -------------------------------------------------------------------------------- /src/ciphers/__fixtures__/FileCipher/nonceTest.decrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/__fixtures__/FileCipher/nonceTest.decrypted -------------------------------------------------------------------------------- /src/ciphers/__fixtures__/FileCipher/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/__fixtures__/FileCipher/test -------------------------------------------------------------------------------- /src/ciphers/__fixtures__/FileCipher/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/__fixtures__/FileCipher/test.png -------------------------------------------------------------------------------- /src/ciphers/__snapshots__/FileCipher.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/__snapshots__/FileCipher.test.js.snap -------------------------------------------------------------------------------- /src/ciphers/__snapshots__/PathCipher.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/__snapshots__/PathCipher.test.js.snap -------------------------------------------------------------------------------- /src/ciphers/eme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/eme/index.js -------------------------------------------------------------------------------- /src/ciphers/text-encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/ciphers/text-encoding.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/rclone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/rclone.js -------------------------------------------------------------------------------- /src/rclone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/rclone.test.js -------------------------------------------------------------------------------- /src/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/reveal.js -------------------------------------------------------------------------------- /src/reveal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/src/reveal.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWeinb/rclone-js/HEAD/webpack.config.js --------------------------------------------------------------------------------