2022-08-03 13:59:45 +02:00
|
|
|
import { ShortTextRound } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-08-03 13:59:45 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.hmac-generator.title'),
|
2022-08-03 13:59:45 +02:00
|
|
|
path: '/hmac-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.hmac-generator.description'),
|
2022-08-03 13:59:45 +02:00
|
|
|
keywords: ['hmac', 'generator', 'MD5', 'SHA1', 'SHA256', 'SHA224', 'SHA512', 'SHA384', 'SHA3', 'RIPEMD160'],
|
|
|
|
component: () => import('./hmac-generator.vue'),
|
|
|
|
icon: ShortTextRound,
|
|
|
|
});
|