mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 02:26:15 -04:00
21 lines
522 B
TypeScript
21 lines
522 B
TypeScript
import { PasswordRound } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Basic auth generator',
|
|
path: '/basic-auth-generator',
|
|
description: 'Generate a base64 basic auth header from an username and a password.',
|
|
keywords: [
|
|
'basic',
|
|
'auth',
|
|
'generator',
|
|
'username',
|
|
'password',
|
|
'base64',
|
|
'authentication',
|
|
'header',
|
|
'authorization',
|
|
],
|
|
component: () => import('./basic-auth-generator.vue'),
|
|
icon: PasswordRound,
|
|
});
|