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

27 lines
586 B
TypeScript

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