Files
it-tools/src/tools/hash-text/index.ts
2022-04-16 10:10:21 +02:00

13 lines
510 B
TypeScript

import { EyeOff } from '@vicons/tabler';
import type { ITool } from '../Tool';
export const tool: ITool = {
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'],
};