mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
13 lines
768 B
TypeScript
13 lines
768 B
TypeScript
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
import PasswordIcon from '~icons/mdi/form-textbox-password';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.password-strength-analyser.title'),
|
|
path: '/password-strength-analyser',
|
|
description: translate('tools.password-strength-analyser.description'),
|
|
keywords: ['password', 'strength', 'analyser', 'and', 'crack', 'time', 'estimation', 'brute', 'force', 'attack', 'entropy', 'cracking', 'hash', 'hashing', 'algorithm', 'algorithms', 'md5', 'sha1', 'sha256', 'sha512', 'bcrypt', 'scrypt', 'argon2', 'argon2id', 'argon2i', 'argon2d'],
|
|
component: () => import('./password-strength-analyser.vue'),
|
|
icon: PasswordIcon,
|
|
createdAt: new Date('2023-06-24'),
|
|
});
|