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

13 lines
442 B
TypeScript
Raw Normal View History

2022-04-18 10:16:59 +02:00
import { LockSquare } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-04-18 10:16:59 +02:00
export const tool = defineTool({
name: translate('tools.bcrypt.title'),
2022-04-18 10:16:59 +02:00
path: '/bcrypt',
description: translate('tools.bcrypt.description'),
2022-04-18 10:16:59 +02:00
keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
component: () => import('./bcrypt.vue'),
icon: LockSquare,
});