mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
12 lines
502 B
TypeScript
12 lines
502 B
TypeScript
import { ShortTextRound } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.hmac-generator.title'),
|
|
path: '/hmac-generator',
|
|
description: translate('tools.hmac-generator.description'),
|
|
keywords: ['hmac', 'generator', 'MD5', 'SHA1', 'SHA256', 'SHA224', 'SHA512', 'SHA384', 'SHA3', 'RIPEMD160'],
|
|
component: () => import('./hmac-generator.vue'),
|
|
icon: ShortTextRound,
|
|
});
|