feat(new-tool): bcrypt

This commit is contained in:
Corentin Thomasset 2022-04-18 10:16:59 +02:00
parent 2b89111cbb
commit 6d5856fa93
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 157 additions and 1 deletions

11
src/tools/bcrypt/index.ts Normal file
View file

@ -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,
};