Base64public class Base64 extends Object
Fields Summary |
---|
public static final int | CRLF | public static final int | DEFAULT | public static final int | NO_CLOSE | public static final int | NO_PADDING | public static final int | NO_WRAP | public static final int | URL_SAFE |
Constructors Summary |
---|
Base64() throw new RuntimeException("Stub!");
|
Methods Summary |
---|
public static byte[] | decode(java.lang.String str, int flags) throw new RuntimeException("Stub!");
| public static byte[] | decode(byte[] input, int flags) throw new RuntimeException("Stub!");
| public static byte[] | decode(byte[] input, int offset, int len, int flags) throw new RuntimeException("Stub!");
| public static byte[] | encode(byte[] input, int flags) throw new RuntimeException("Stub!");
| public static byte[] | encode(byte[] input, int offset, int len, int flags) throw new RuntimeException("Stub!");
| public static java.lang.String | encodeToString(byte[] input, int flags) throw new RuntimeException("Stub!");
| public static java.lang.String | encodeToString(byte[] input, int offset, int len, int flags) throw new RuntimeException("Stub!");
|
|