aboutsummaryrefslogtreecommitdiff
path: root/src/tools/bcrypt/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/bcrypt/index.ts')
-rw-r--r--src/tools/bcrypt/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/bcrypt/index.ts b/src/tools/bcrypt/index.ts
new file mode 100644
index 0000000..9108853
--- /dev/null
+++ b/src/tools/bcrypt/index.ts
@@ -0,0 +1,11 @@
+import { LockSquare } from '@vicons/tabler';
+import type { ITool } from './../Tool';
+
+export const tool: ITool = {
+ name: 'Bcrypt',
+ path: '/bcrypt',
+ description: 'Hash and compare text string using bcrypt. Bcrypt is a password-hashing function based on the Blowfish cipher.',
+ keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
+ component: () => import('./bcrypt.vue'),
+ icon: LockSquare,
+};