diff options
author | 2023-03-10 18:16:55 +0100 | |
---|---|---|
committer | 2023-03-10 18:16:55 +0100 | |
commit | 30e9149d61c30206d080cf5c88d8cde1a282476c (patch) | |
tree | 2fc2062fd6bee7fe17be2713f57f65a01d87bfdf /src/tools/index.ts | |
parent | 7958e2e0756e21cb12559322d4dea46bc271ed93 (diff) | |
download | it-tools-30e9149d61c30206d080cf5c88d8cde1a282476c.tar.gz it-tools-30e9149d61c30206d080cf5c88d8cde1a282476c.tar.zst it-tools-30e9149d61c30206d080cf5c88d8cde1a282476c.zip |
feat(new-tool): RSA key pair generator
Diffstat (limited to '')
-rw-r--r-- | src/tools/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts index 6ad328f..18208dd 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 rsaKeyPairGenerator } from './rsa-key-pair-generator'; import { tool as textToNatoAlphabet } from './text-to-nato-alphabet'; import { tool as slugifyString } from './slugify-string'; import { tool as keycodeInfo } from './keycode-info'; @@ -44,7 +45,7 @@ import { tool as uuidGenerator } from './uuid-generator'; export const toolsByCategory: ToolCategory[] = [ { name: 'Crypto', - components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39, hmacGenerator], + components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39, hmacGenerator, rsaKeyPairGenerator], }, { name: 'Converter', |