mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(tool): text hash
This commit is contained in:
parent
40dec52c84
commit
0f3b7445ad
3 changed files with 85 additions and 1 deletions
11
src/tools/hash-text/index.ts
Normal file
11
src/tools/hash-text/index.ts
Normal 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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue