https://github.com/brix/crypto-js
i have install cryptoJs using npm i crypto-js
but how do i use it on my project ? when i write this code
JavaScript
x
6
1
// Decrypt
2
var bytes = CryptoJS.AES.decrypt(ciphertext, 'secret key 123');
3
4
var originalText = bytes.toString(CryptoJS.enc.Utf8);
5
6
console.log(originalText);
but it show an error said that CryptoJS is undefined
here is my code
JavaScript
1
26
26
1
<script>
2
import CryptoJS from 'crypto-js'
3
require('crypto-js')
4
5
export default {
6
name: "AnswerQuestionnaire",
7
components:{
8
9
},
10
props: {
11
12
},
13
data() {
14
return {
15
16
}
17
},
18
19
created(){
20
this.CryptoJS.AES.decrypt("zU5jEPwQSm2P0X33jgH6sg==", "sB7b5q4fp0G59R9t").toString(this.CryptoJS.enc.Utf8)
21
22
},
23
mounted(){
24
25
}
26
};
this is the eror
JavaScript
1
2
1
VM820424:1 Uncaught ReferenceError: CryptoJs is not defined
2
at eval (eval at created
Advertisement
Answer
At first, you have to run npm install crypto-js
in Vue terminal.
Then, you have to import or require crypto first
JavaScript
1
14
14
1
<script>
2
import CryptoJS from 'crypto-js';
3
export default {
4
created() {
5
var bytes = CryptoJS.AES.decrypt(ciphertext, 'secret key 123');
6
7
var originalText = bytes.toString(CryptoJS.enc.Utf8);
8
9
console.log(originalText);
10
}
11
}
12
13
</script>
14