├── README.md ├── preclass ├── .gitignore ├── annotations.txt ├── index.js ├── package-lock.json ├── package.json └── src │ ├── app.js │ ├── constants.js │ ├── cryptoHelper.js │ ├── customFSPromises.js │ └── decorator.js └── recorded ├── .vscode └── settings.json └── encrypt-decrypt-file ├── index.js ├── package-lock.json ├── package.json ├── src ├── app.js ├── constants.js ├── cryptoHelper.js ├── customFSPromises.js └── decorator.js └── super-secure-file.txt.enc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/README.md -------------------------------------------------------------------------------- /preclass/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/.gitignore -------------------------------------------------------------------------------- /preclass/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/annotations.txt -------------------------------------------------------------------------------- /preclass/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/index.js -------------------------------------------------------------------------------- /preclass/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/package-lock.json -------------------------------------------------------------------------------- /preclass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/package.json -------------------------------------------------------------------------------- /preclass/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/src/app.js -------------------------------------------------------------------------------- /preclass/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/src/constants.js -------------------------------------------------------------------------------- /preclass/src/cryptoHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/src/cryptoHelper.js -------------------------------------------------------------------------------- /preclass/src/customFSPromises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/src/customFSPromises.js -------------------------------------------------------------------------------- /preclass/src/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/preclass/src/decorator.js -------------------------------------------------------------------------------- /recorded/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 3 3 | } -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/index.js -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/package-lock.json -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/package.json -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/src/app.js -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/src/constants.js -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/src/cryptoHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/src/cryptoHelper.js -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/src/customFSPromises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/src/customFSPromises.js -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/src/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/securing-files-using-nodejs-crypto-yt/HEAD/recorded/encrypt-decrypt-file/src/decorator.js -------------------------------------------------------------------------------- /recorded/encrypt-decrypt-file/super-secure-file.txt.enc: -------------------------------------------------------------------------------- 1 | CZdHYeaC/tD53ghXmIntUyXmcwfg3aDkFuP3jHZ+ezDOkeHWxs5VRMzvhJ2tq04X --------------------------------------------------------------------------------