it-tools/src/tools/hash-text/index.ts

28 lines
586 B
TypeScript
Raw Normal View History

import { IconEyeOff } from '@tabler/icons-vue';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-04-04 00:25:53 +02:00
export const tool = defineTool({
name: translate('tools.hash-text.title'),
2022-04-04 00:25:53 +02:00
path: '/hash-text',
description: translate('tools.hash-text.description'),
2022-04-22 23:31:40 +02:00
keywords: [
'hash',
'digest',
'crypto',
'security',
'text',
'MD5',
'SHA1',
'SHA256',
'SHA224',
'SHA512',
'SHA384',
'SHA3',
'RIPEMD160',
],
2022-04-04 00:25:53 +02:00
component: () => import('./hash-text.vue'),
icon: IconEyeOff,
redirectFrom: ['/hash'],
});