2024-10-27 10:54:45 -07:00
|
|
|
import { IconEyeOff } from '@tabler/icons-vue';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-04-04 00:25:53 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.hash-text.title'),
|
2022-04-04 00:25:53 +02:00
|
|
|
path: '/hash-text',
|
2024-02-01 14:05:54 +01:00
|
|
|
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'),
|
2024-10-27 10:54:45 -07:00
|
|
|
icon: IconEyeOff,
|
2022-04-16 10:10:21 +02:00
|
|
|
redirectFrom: ['/hash'],
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|