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

encrypted the data and not get getting same data after decryption,in android code why you are not using algorithm

Open brandtiwari007 opened this issue 3 years ago • 0 comments

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()); } } line 58-64 in java encrypt method why are taking algorithm field from react-native side but not using it why?

brandtiwari007 avatar Jan 12 '22 05:01 brandtiwari007