mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
refactor(lint): linter auto fix
This commit is contained in:
parent
8e29a97404
commit
086d31eab5
54 changed files with 1122 additions and 1503 deletions
|
@ -2,10 +2,7 @@
|
|||
<div>
|
||||
<n-card title="Encrypt">
|
||||
<n-space item-style="flex: 1 1 0">
|
||||
<n-form-item
|
||||
label="Your text:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form-item label="Your text:" :show-feedback="false">
|
||||
<n-input
|
||||
v-model:value="cypherInput"
|
||||
type="textarea"
|
||||
|
@ -14,28 +11,19 @@
|
|||
/>
|
||||
</n-form-item>
|
||||
<n-space vertical>
|
||||
<n-form-item
|
||||
label="Your secret key:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form-item label="Your secret key:" :show-feedback="false">
|
||||
<n-input v-model:value="cypherSecret" />
|
||||
</n-form-item>
|
||||
<n-form-item
|
||||
label="Encryption algorithm:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form-item label="Encryption algorithm:" :show-feedback="false">
|
||||
<n-select
|
||||
v-model:value="cypherAlgo"
|
||||
:options="Object.keys(algos).map(label => ({ label, value: label }))"
|
||||
:options="Object.keys(algos).map((label) => ({ label, value: label }))"
|
||||
/>
|
||||
</n-form-item>
|
||||
</n-space>
|
||||
</n-space>
|
||||
<br>
|
||||
<n-form-item
|
||||
label="Yout text encrypted:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<br />
|
||||
<n-form-item label="Yout text encrypted:" :show-feedback="false">
|
||||
<n-input
|
||||
:value="cypherOutput"
|
||||
type="textarea"
|
||||
|
@ -49,13 +37,10 @@
|
|||
/>
|
||||
</n-form-item>
|
||||
</n-card>
|
||||
<br>
|
||||
<br />
|
||||
<n-card title="Decrypt">
|
||||
<n-space item-style="flex: 1 1 0">
|
||||
<n-form-item
|
||||
label="Your encrypted text:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form-item label="Your encrypted text:" :show-feedback="false">
|
||||
<n-input
|
||||
v-model:value="decryptInput"
|
||||
type="textarea"
|
||||
|
@ -64,28 +49,19 @@
|
|||
/>
|
||||
</n-form-item>
|
||||
<n-space vertical>
|
||||
<n-form-item
|
||||
label="Your secret key:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form-item label="Your secret key:" :show-feedback="false">
|
||||
<n-input v-model:value="decryptSecret" />
|
||||
</n-form-item>
|
||||
<n-form-item
|
||||
label="Encryption algorithm:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form-item label="Encryption algorithm:" :show-feedback="false">
|
||||
<n-select
|
||||
v-model:value="decryptAlgo"
|
||||
:options="Object.keys(algos).map(label => ({ label, value: label }))"
|
||||
:options="Object.keys(algos).map((label) => ({ label, value: label }))"
|
||||
/>
|
||||
</n-form-item>
|
||||
</n-space>
|
||||
</n-space>
|
||||
<br>
|
||||
<n-form-item
|
||||
label="Yout decrypted text:"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<br />
|
||||
<n-form-item label="Yout decrypted text:" :show-feedback="false">
|
||||
<n-input
|
||||
:value="decryptOutput"
|
||||
type="textarea"
|
||||
|
@ -103,21 +79,20 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, ref } from 'vue'
|
||||
import { AES, TripleDES, Rabbit, RC4, enc } from 'crypto-js'
|
||||
import { computed, ref } from 'vue';
|
||||
import { AES, TripleDES, Rabbit, RC4, enc } from 'crypto-js';
|
||||
|
||||
const algos = { AES, TripleDES, Rabbit, RC4 }
|
||||
|
||||
const cypherInput = ref('Lorem ipsum dolor sit amet')
|
||||
const cypherAlgo = ref<keyof typeof algos>('AES')
|
||||
const cypherSecret = ref('my secret key')
|
||||
const cypherOutput = computed(() => algos[cypherAlgo.value].encrypt(cypherInput.value, cypherSecret.value).toString())
|
||||
|
||||
|
||||
const decryptInput = ref('U2FsdGVkX1/EC3+6P5dbbkZ3e1kQ5o2yzuU0NHTjmrKnLBEwreV489Kr0DIB+uBs')
|
||||
const decryptAlgo = ref<keyof typeof algos>('AES')
|
||||
const decryptSecret = ref('my secret key')
|
||||
const decryptOutput = computed(() => algos[decryptAlgo.value].decrypt(decryptInput.value, decryptSecret.value).toString(enc.Utf8))
|
||||
const algos = { AES, TripleDES, Rabbit, RC4 };
|
||||
|
||||
const cypherInput = ref('Lorem ipsum dolor sit amet');
|
||||
const cypherAlgo = ref<keyof typeof algos>('AES');
|
||||
const cypherSecret = ref('my secret key');
|
||||
const cypherOutput = computed(() => algos[cypherAlgo.value].encrypt(cypherInput.value, cypherSecret.value).toString());
|
||||
|
||||
const decryptInput = ref('U2FsdGVkX1/EC3+6P5dbbkZ3e1kQ5o2yzuU0NHTjmrKnLBEwreV489Kr0DIB+uBs');
|
||||
const decryptAlgo = ref<keyof typeof algos>('AES');
|
||||
const decryptSecret = ref('my secret key');
|
||||
const decryptOutput = computed(() =>
|
||||
algos[decryptAlgo.value].decrypt(decryptInput.value, decryptSecret.value).toString(enc.Utf8),
|
||||
);
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue