(String s)
| 29 | public static final int URL_SAFE = Base64.DEFAULT | Base64.URL_SAFE | Base64.NO_WRAP; |
| 30 | |
| 31 | public static String base64(String s) { |
| 32 | return base64(s.getBytes()); |
| 33 | } |
| 34 | |
| 35 | public static String base64(byte[] bytes) { |
| 36 | return base64(bytes, Base64.DEFAULT | Base64.NO_WRAP); |
no outgoing calls
no test coverage detected