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
Is there any other reasons to not be compatible with Java8 ? Or these incompatibilities are linked to openJDK ?
And thanks a lot for your great job. I will certainly used it a lot and make some more feedback.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am still using Java8 (openJDK) for some reasons and found that only to changes are necessary :
// final Cipher cipher = Cipher.getInstance("AES/CBC/ZeroBytePadding");
final Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
// return URLEncoder.encode(toEncode, StandardCharsets.UTF_8);
return URLEncoder.encode(toEncode, "UTF-8");
Is there any other reasons to not be compatible with Java8 ? Or these incompatibilities are linked to openJDK ?
And thanks a lot for your great job. I will certainly used it a lot and make some more feedback.
Beta Was this translation helpful? Give feedback.
All reactions