public class Base64 extends Object
Constructor and Description |
---|
Base64() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(String encoded) |
static byte[] |
decodeFromCharArray(byte[] data)
This method decodes the byte array in base 64 encoding into a char array
Base 64 encoding has to be according to the specification given by the
RFC 1521 (5.2).
|
static String |
encode(byte[] bytes) |
static byte[] |
encodeToCharArray(byte[] data)
This method encodes the byte array into a char array in base 64 according
to the specification given by the RFC 1521 (5.2).
|
public static byte[] decodeFromCharArray(byte[] data)
data
- the encoded byte arraypublic static byte[] encodeToCharArray(byte[] data)
data
- the encoded char arraypublic static String encode(byte[] bytes)
public static byte[] decode(String encoded)
Copyright © 2017 Eclipse Foundation. All rights reserved.