react-native-aes
react-native-aes copied to clipboard
Native module for AES encryption
Hello, I am having some trouble decrypting files using react-native-aes. I am currently using nodejs crpyto to encrypt my files as shown in the code bellow, which works great. I...
can u help, i dont know why failed: message: ``` nVyCnCGpIxSE7Mpbfuj4Cdx4YRkkssxiZ1kZxVNuOMtBpd+CmzYGcDoZyWUwL41yWWONDVxewotexteCgXqhH7WV+ObGw0QADmjgygHd0C4kCCmQgNPjxWwb2q7FdzGwOCMkRoQByQyEXN3L176nlSNmT4GW9GAd3hf/JLFtlf0=', 'UjUzb3NKdmczeW9JVEM1NzYwc1hhU09wVlpzeXg2UEFnOFpNVytwZThoaz0= ``` key: ``` UjUzb3NKdmczeW9JVEM1NzYwc1hhU09wVlpzeXg2UEFnOFpNVytwZThoaz0= ``` iv: ``` UjUzb3NKdmczeW9J ```
It seems everytime a encrypting process takes place of 10mb file, my app increases size in memory 50 to 100 mb more. next encryption increases 50 to 100mb more... A...
Error: exception decoding Hex string: invalid characters encountered in Hex string
Hello, I have a jpg file that was encrypted on a server (with nodejs). When I try to decrypt it (on iOS) with this library it fails with 'Decrypt failed'....
public void encrypt(String data, String key, String iv, String algorithm, Promise promise) { try { String result = encrypt(data, key, iv); promise.resolve(result); } catch (Exception e) { promise.reject("-1", e.getMessage()); }...
I'm getting the following error while trying to run the readme example: [TypeError: _reactNativeAesCrypto.default.pbkdf2 is not a function. (In '_reactNativeAesCrypto.default.pbkdf2(password, salt, cost, length)', '_reactNativeAesCrypto.default.pbkdf2' is undefined)] Environment "react-native": "0.64.2" "react":...
Hello! Thank you for your job! But I have a typing issue with version 1.3.10 When I do: `import Aes from 'react-native-aes-crypto'` I have the following issue: `File '/node_modules/react-native-aes-crypto/index.d.ts' is...
Below is how to encrypt a text. Is there a way to encrypt video file by passing the path ? const encrypt = (text, keyBase64) => { var ivBase64 =...