aboutsummaryrefslogtreecommitdiff
path: root/src/tools/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-04-16 13:55:15 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-04-16 13:55:15 +0200
commit8bcca2269449d3c63d609df0c83102c00bde68f1 (patch)
tree2eaac8d6498fbe14987c176a7f3866e6146bb87b /src/tools/index.ts
parentc68a1fd7136cb04974a59f47981ad2cbfa570ff9 (diff)
downloadit-tools-argon2.tar.gz
it-tools-argon2.tar.zst
it-tools-argon2.zip
feat(new tool): argon2 password hashing and verificationargon2
Diffstat (limited to 'src/tools/index.ts')
-rw-r--r--src/tools/index.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts
index ad6167e..dcd2fe3 100644
--- a/src/tools/index.ts
+++ b/src/tools/index.ts
@@ -1,6 +1,7 @@
import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
+import { tool as argon2HashGenerator } from './argon2-hash-generator';
import { tool as httpStatusCodes } from './http-status-codes';
import { tool as yamlToJson } from './yaml-to-json-converter';
import { tool as jsonToYaml } from './json-to-yaml-converter';
@@ -56,7 +57,17 @@ import { tool as macAddressLookup } from './mac-address-lookup';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
- components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39, hmacGenerator, rsaKeyPairGenerator],
+ components: [
+ tokenGenerator,
+ hashText,
+ bcrypt,
+ argon2HashGenerator,
+ uuidGenerator,
+ cypher,
+ bip39,
+ hmacGenerator,
+ rsaKeyPairGenerator,
+ ],
},
{
name: 'Converter',