13 lines
		
	
	
		
			442 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			442 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { LockSquare } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.bcrypt.title'),
 | |
|   path: '/bcrypt',
 | |
|   description: translate('tools.bcrypt.description'),
 | |
|   keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
 | |
|   component: () => import('./bcrypt.vue'),
 | |
|   icon: LockSquare,
 | |
| });
 |