1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<template>
<div>
<n-card title="Encrypt">
<n-space item-style="flex: 1 1 0">
<n-form-item
label="Your text:"
:show-feedback="false"
>
<n-input
v-model:value="cypherInput"
type="textarea"
placeholder="The string to cypher"
:autosize="{ minRows: 4 }"
/>
</n-form-item>
<n-space vertical>
<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-select
v-model:value="cypherAlgo"
: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"
>
<n-input
:value="cypherOutput"
type="textarea"
placeholder="Your string hash"
:autosize="{ minRows: 2 }"
readonly
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
/>
</n-form-item>
</n-card>
<br>
<n-card title="Decrypt">
<n-space item-style="flex: 1 1 0">
<n-form-item
label="Your encrypted text:"
:show-feedback="false"
>
<n-input
v-model:value="decryptInput"
type="textarea"
placeholder="The string to cypher"
:autosize="{ minRows: 4 }"
/>
</n-form-item>
<n-space vertical>
<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-select
v-model:value="decryptAlgo"
: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"
>
<n-input
:value="decryptOutput"
type="textarea"
placeholder="Your string hash"
:autosize="{ minRows: 2 }"
readonly
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
/>
</n-form-item>
</n-card>
</div>
</template>
<script setup lang="ts">
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))
</script>
<style lang="less" scoped>
</style>
|