├── .gitignore ├── README.md ├── app ├── app.vue └── pages │ ├── index.vue │ └── scrypt.vue ├── eslint.config.mjs ├── nuxt.config.ts ├── package.json ├── pnpm-lock.yaml ├── public └── favicon.ico ├── server ├── api │ ├── env.ts │ ├── hash.post.ts │ ├── scrypt │ │ ├── hash.post.ts │ │ └── verify.post.ts │ └── verify.post.ts └── tsconfig.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/README.md -------------------------------------------------------------------------------- /app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/app/app.vue -------------------------------------------------------------------------------- /app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/app/pages/index.vue -------------------------------------------------------------------------------- /app/pages/scrypt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/app/pages/scrypt.vue -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /server/api/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/server/api/env.ts -------------------------------------------------------------------------------- /server/api/hash.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/server/api/hash.post.ts -------------------------------------------------------------------------------- /server/api/scrypt/hash.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/server/api/scrypt/hash.post.ts -------------------------------------------------------------------------------- /server/api/scrypt/verify.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/server/api/scrypt/verify.post.ts -------------------------------------------------------------------------------- /server/api/verify.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/server/api/verify.post.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-bcrypt-edge/HEAD/tsconfig.json --------------------------------------------------------------------------------