react-native-aes icon indicating copy to clipboard operation
react-native-aes copied to clipboard

Native module for AES encryption

Results 33 react-native-aes issues
Sort by recently updated
recently updated
newest added

Just an FYI, I think the instructions are outdated by the current version of Gradle. I followed the instructions in the `README.md.` I am getting the error: For some reason,...

Hi all, I have a file where the `iv` is encoded in the first 16 bytes of data and then the rest is the actual file content (bytes 16 onwards)....

I have an app with React Native v0.71.8 and "react-native-aes-crypto": "^3.0.1" I cannot Encrypt data with the demo code in the Readme: ``` const encryptData = (text, key) => {...

Is anyone know why in react native android if we encrypt empty string it throws null value is there any solution for that ? i will be thankful if someone...

Updated the latest version of react-native-aes-crypto lib 3.0.1 Locally I can see the encrypted and decrypted value on the simulator but same changes are causing Crash on Real Device Both...

I would like to use the AES/CTR/NoPadding algorithm. It would also be nice to be able to pass and get bytes instead of strings as parameters and output. It would...

`A problem occurred evaluating project ':react-native-aes-crypto'. > Plugin with id 'maven' not found.` react-native:0.72.4 react-native-aes-crypto:1.3.9 gradle:8.0.1

Is there a way to feed chunks of data to be encrypted and decrypted? Mainly for working with large files. Thanks!

I believe the performance could be increased by doing the implementation using JSI! I found this article that could help achieve it: https://blog.notesnook.com/getting-started-react-native-jsi/