mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
feat(new-tool): added otp generator
This commit is contained in:
parent
ea5e7a7fc7
commit
5f16885923
6 changed files with 506 additions and 1 deletions
27
src/tools/otp-code-generator-and-validator/index.ts
Normal file
27
src/tools/otp-code-generator-and-validator/index.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
import { DeviceMobile } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'OTP code generator',
|
||||
path: '/otp-code-generator-and-validator',
|
||||
description: 'Generate and validate time-based OTP (one time password) for multi-factor authentication.',
|
||||
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,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue