diff options
Diffstat (limited to 'src/tools/encryption')
-rw-r--r-- | src/tools/encryption/encryption.vue | 4 | ||||
-rw-r--r-- | src/tools/encryption/index.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/encryption/encryption.vue b/src/tools/encryption/encryption.vue index 154ad52..84c3ce8 100644 --- a/src/tools/encryption/encryption.vue +++ b/src/tools/encryption/encryption.vue @@ -22,7 +22,7 @@ </n-space> </n-space> <br /> - <n-form-item label="Yout text encrypted:" :show-feedback="false"> + <n-form-item label="Your text encrypted:" :show-feedback="false"> <n-input :value="cypherOutput" type="textarea" @@ -59,7 +59,7 @@ </n-space> </n-space> <br /> - <n-form-item label="Yout decrypted text:" :show-feedback="false"> + <n-form-item label="Your decrypted text:" :show-feedback="false"> <n-input :value="decryptOutput" type="textarea" diff --git a/src/tools/encryption/index.ts b/src/tools/encryption/index.ts index 1adef2b..2bb7c74 100644 --- a/src/tools/encryption/index.ts +++ b/src/tools/encryption/index.ts @@ -5,7 +5,7 @@ export const tool: ITool = { name: 'Encrypt / decrypt text', path: '/encryption', description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.', - keywords: ['cypher', 'uncypher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'], + keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'], component: () => import('./encryption.vue'), icon: Lock, redirectFrom: ['/cypher'], |