2022-08-24 00:10:53 +02:00
|
|
|
import { DeviceMobile } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-08-24 00:10:53 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.otp-generator.title'),
|
2022-08-24 00:22:54 +02:00
|
|
|
path: '/otp-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.otp-generator.description'),
|
2022-08-24 00:10:53 +02:00
|
|
|
keywords: [
|
|
|
|
'otp',
|
|
|
|
'code',
|
|
|
|
'generator',
|
|
|
|
'validator',
|
|
|
|
'one',
|
|
|
|
'time',
|
|
|
|
'password',
|
|
|
|
'authentication',
|
|
|
|
'MFA',
|
|
|
|
'mobile',
|
|
|
|
'device',
|
|
|
|
'security',
|
|
|
|
'TOTP',
|
|
|
|
'Time',
|
|
|
|
'HMAC',
|
|
|
|
],
|
|
|
|
component: () => import('./otp-code-generator-and-validator.vue'),
|
|
|
|
icon: DeviceMobile,
|
|
|
|
});
|