Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
jcifs.util.Base64
public class Base64
extends java.lang.Object
Method Summary | |
static byte[] |
|
static String |
|
public static byte[] decode(String string)
Decodes the supplied Base-64 encoded string.
- Parameters:
string
- The Base-64 encoded string that is to be decoded.
- Returns:
- A
byte[]
containing the decoded data block.
public static String encode(byte[] bytes)
Base-64 encodes the supplied block of data. Line wrapping is not applied on output.
- Parameters:
bytes
- The block of data that is to be Base-64 encoded.
- Returns:
- A
String
containing the encoded data.