mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
27 lines
575 B
TypeScript
27 lines
575 B
TypeScript
import { EyeOff } from '@vicons/tabler';
|
|
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: EyeOff,
|
|
redirectFrom: ['/hash'],
|
|
});
|