28 lines
		
	
	
		
			575 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			575 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { EyeOff } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.hash-text.title'),
 | |
|   path: '/hash-text',
 | |
|   description: translate('tools.hash-text.description'),
 | |
|   keywords: [
 | |
|     'hash',
 | |
|     'digest',
 | |
|     'crypto',
 | |
|     'security',
 | |
|     'text',
 | |
|     'MD5',
 | |
|     'SHA1',
 | |
|     'SHA256',
 | |
|     'SHA224',
 | |
|     'SHA512',
 | |
|     'SHA384',
 | |
|     'SHA3',
 | |
|     'RIPEMD160',
 | |
|   ],
 | |
|   component: () => import('./hash-text.vue'),
 | |
|   icon: EyeOff,
 | |
|   redirectFrom: ['/hash'],
 | |
| });
 |