mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-11-02 13:03:16 +00:00
28 lines
576 B
TypeScript
28 lines
576 B
TypeScript
import { EyeOff } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Hash text',
|
|
path: '/hash-text',
|
|
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',
|
|
],
|
|
component: () => import('./hash-text.vue'),
|
|
icon: EyeOff,
|
|
redirectFrom: ['/hash'],
|
|
});
|