You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: