mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
refactor(lint): linter auto fix
This commit is contained in:
parent
8e29a97404
commit
086d31eab5
54 changed files with 1122 additions and 1503 deletions
|
@ -4,8 +4,23 @@ 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'],
|
||||
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'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue