Files
it-tools/src/tools/bcrypt/index.ts
Corentin Thomasset 6d5856fa93 feat(new-tool): bcrypt
2022-04-18 10:17:39 +02:00

12 lines
440 B
TypeScript

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