react-native: `0.66.4` crypto-js: `^4.1.1` ``` import CryptoJS from "crypto-js"; --- var ciphertext = CryptoJS.AES.encrypt("HEY GOOGLE", 'secret key 123').toString(); console.log(ciphertext); var bytes = CryptoJS.AES.decrypt(ciphertext, 'secret key 123'); var originalText = bytes.toString(CryptoJS.enc.Utf8); console.log(originalText); --- ``` ``` ERROR Error: Native crypto module could not be used to get secure random number. ``` <img width="250" height="500" alt="Screenshot_1653045749" src="https://user-images.githubusercontent.com/73298854/169518288-78b27708-1e3f-4d74-9870-599a9cd22e1e.png">