diff options
author | 2022-08-03 13:59:45 +0200 | |
---|---|---|
committer | 2022-08-03 17:19:53 +0200 | |
commit | 1bc6380c6fdd7a9b500422a54bc508ab5557eb46 (patch) | |
tree | 7b0be951dd0ce09e28543054bd2097a486c146d8 /src/tools/index.ts | |
parent | 02c49635315661ca08deb0859c5ba33113368b9b (diff) | |
download | it-tools-1bc6380c6fdd7a9b500422a54bc508ab5557eb46.tar.gz it-tools-1bc6380c6fdd7a9b500422a54bc508ab5557eb46.tar.zst it-tools-1bc6380c6fdd7a9b500422a54bc508ab5557eb46.zip |
feat(new-tool): hmac 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 6f30200..a03f273 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -16,6 +16,7 @@ import { tool as cypher } from './encryption'; import { tool as etaCalculator } from './eta-calculator'; import { tool as gitMemo } from './git-memo'; import { tool as hashText } from './hash-text'; +import { tool as hmacGenerator } from './hmac-generator'; import { tool as htmlEntities } from './html-entities'; import { tool as baseConverter } from './integer-base-converter'; import { tool as jsonViewer } from './json-viewer'; @@ -36,7 +37,7 @@ export const toolsByCategory: ToolCategory[] = [ { name: 'Crypto', icon: LockOpen, - components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39], + components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39, hmacGenerator], }, { name: 'Converter', |