mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 00:36:14 -04:00
feat(new-tool): bcrypt
This commit is contained in:
parent
2b89111cbb
commit
6d5856fa93
5 changed files with 157 additions and 1 deletions
11
src/tools/bcrypt/index.ts
Normal file
11
src/tools/bcrypt/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { LockSquare } from '@vicons/tabler';
|
||||
import type { ITool } from './../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'Bcrypt',
|
||||
path: '/bcrypt',
|
||||
description: 'Hash and compare text string using bcrypt. Bcrypt is a password-hashing function based on the Blowfish cipher.',
|
||||
keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
|
||||
component: () => import('./bcrypt.vue'),
|
||||
icon: LockSquare,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue