-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove B64Code #2909
Comments
+1... except we have to be absolutely sure that any changed usages don't depend on the older/different BASE64 interpretations. |
+ Deprecated B64Code + All code that isn't B64CodeTest is now using java.util.Base64 + B64CodeTest is updated to confirm change to java.util.Base64 is possible without change in behavior. Just have to make sure you use the appropriate Encoder / Decoder for the task at hand (default vs mime vs url) Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
Opened PR #3640 |
+ Address Mime Encoding behavior difference detected in testcase Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
+ Deprecated B64Code + All code that isn't B64CodeTest is now using java.util.Base64 + B64CodeTest is updated to confirm change to java.util.Base64 is possible without change in behavior. Just have to make sure you use the appropriate Encoder / Decoder for the task at hand (default vs mime vs url) Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
+ Address Mime Encoding behavior difference detected in testcase Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
I have merged @joakime 's PR #3640 |
@gregw I don't think you can just do this to replace the The |
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
The ancient
B64Code
class injetty-util
should be replaced by JDK 8'sBase64
class, which is more up-to-date with base64 RFCs and not maintained by us.The text was updated successfully, but these errors were encountered: