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

28 lines
571 B
TypeScript
Raw Normal View History

2022-04-04 00:25:53 +02:00
import { EyeOff } from '@vicons/tabler';
2022-05-25 23:20:51 +02:00
import type { ITool } from '../tool';
2022-04-04 00:25:53 +02:00
export const tool: ITool = {
name: 'Hash text',
path: '/hash-text',
2022-04-22 23:31:40 +02:00
description:
'Hash a text string using the function you need : MD5, SHA1, SHA256, SHA224, SHA512, SHA384, SHA3 or RIPEMD160',
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: EyeOff,
redirectFrom: ['/hash'],
2022-04-04 00:25:53 +02:00
};