it-tools/src/tools/bcrypt/index.ts

13 lines
447 B
TypeScript
Raw Normal View History

2022-04-18 10:16:59 +02:00
import { LockSquare } from '@vicons/tabler';
import { defineTool } from '../tool';
2022-04-18 10:16:59 +02:00
export const tool = defineTool({
2022-04-18 10:16:59 +02:00
name: 'Bcrypt',
path: '/bcrypt',
2022-04-22 23:31:40 +02:00
description:
'Hash and compare text string using bcrypt. Bcrypt is a password-hashing function based on the Blowfish cipher.',
2022-04-18 10:16:59 +02:00
keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
component: () => import('./bcrypt.vue'),
icon: LockSquare,
});