├── .eslintrc.json ├── .github └── stale.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── jest.config.js ├── lib ├── authorization │ └── AuthorizationHelperMethods.js └── index.js ├── package.json ├── src ├── authentication │ └── AuthenticationController.ts ├── authorization │ ├── AuthorizationController.ts │ └── AuthorizationHelperMethods.ts ├── index.ts ├── libsodium.d.ts ├── modes │ ├── AdvancedHoplite.ts │ ├── DefaultHoplite.ts │ ├── HashMethods.ts │ ├── HopliteSchemas.ts │ └── RulesetSchema.ts ├── tests │ └── HopLiteSchemas.spec.ts ├── types.ts └── utils │ ├── Utilities.ts │ └── commonPasswords.txt ├── tsconfig.json └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/authorization/AuthorizationHelperMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/lib/authorization/AuthorizationHelperMethods.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/package.json -------------------------------------------------------------------------------- /src/authentication/AuthenticationController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/authentication/AuthenticationController.ts -------------------------------------------------------------------------------- /src/authorization/AuthorizationController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/authorization/AuthorizationController.ts -------------------------------------------------------------------------------- /src/authorization/AuthorizationHelperMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/authorization/AuthorizationHelperMethods.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/libsodium.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'libsodium-wrappers'; -------------------------------------------------------------------------------- /src/modes/AdvancedHoplite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/modes/AdvancedHoplite.ts -------------------------------------------------------------------------------- /src/modes/DefaultHoplite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/modes/DefaultHoplite.ts -------------------------------------------------------------------------------- /src/modes/HashMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/modes/HashMethods.ts -------------------------------------------------------------------------------- /src/modes/HopliteSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/modes/HopliteSchemas.ts -------------------------------------------------------------------------------- /src/modes/RulesetSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/modes/RulesetSchema.ts -------------------------------------------------------------------------------- /src/tests/HopLiteSchemas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/tests/HopLiteSchemas.spec.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/utils/Utilities.ts -------------------------------------------------------------------------------- /src/utils/commonPasswords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/src/utils/commonPasswords.txt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/hopLiteJS/HEAD/webpack.config.js --------------------------------------------------------------------------------