feat(tool): text hash

This commit is contained in:
Corentin Thomasset 2022-04-04 00:25:53 +02:00
parent 40dec52c84
commit 0f3b7445ad
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 85 additions and 1 deletions

View file

@ -0,0 +1,11 @@
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,
};