diff options
Diffstat (limited to 'src/tools/index.ts')
-rw-r--r-- | src/tools/index.ts | 13 |
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', |