diff options
author | 2022-04-04 00:25:53 +0200 | |
---|---|---|
committer | 2022-04-04 00:25:53 +0200 | |
commit | 0f3b7445ad1f945d9b364476147bf824ac309a6c (patch) | |
tree | f852e67ad2b7c3d9bb291618eeabe974d21115d5 /src/tools/hash-text/index.ts | |
parent | 40dec52c8467fd27eb8f3857ed72746ebaa4f509 (diff) | |
download | it-tools-0f3b7445ad1f945d9b364476147bf824ac309a6c.tar.gz it-tools-0f3b7445ad1f945d9b364476147bf824ac309a6c.tar.zst it-tools-0f3b7445ad1f945d9b364476147bf824ac309a6c.zip |
feat(tool): text hash
Diffstat (limited to 'src/tools/hash-text/index.ts')
-rw-r--r-- | src/tools/hash-text/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/hash-text/index.ts b/src/tools/hash-text/index.ts new file mode 100644 index 0000000..fbc9a2c --- /dev/null +++ b/src/tools/hash-text/index.ts @@ -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, +}; |