Class Base64
java.lang.Object
org.gudy.bouncycastle.util.encoders.Base64
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final byte[]
private static final byte[]
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic byte[]
decode
(byte[] data) decode the base 64 encoded input data.static byte[]
decode
(char[] data) static byte[]
decode the base 64 encoded String data.static int
decode
(String data, OutputStream out) decode the base 64 encoded String data writing it to the given output streamstatic byte[]
encode
(byte[] data) encode the input data producong a base 64 encoded byte array.
-
Field Details
-
encodingTable
private static final byte[] encodingTable -
decodingTable
private static final byte[] decodingTable
-
-
Constructor Details
-
Base64
public Base64()
-
-
Method Details
-
encode
public static byte[] encode(byte[] data) encode the input data producong a base 64 encoded byte array.- Returns:
- a byte array containing the base 64 encoded data.
-
decode
public static byte[] decode(byte[] data) decode the base 64 encoded input data.- Returns:
- a byte array representing the decoded data.
-
decode
public static byte[] decode(char[] data) -
decode
decode the base 64 encoded String data.- Returns:
- a byte array representing the decoded data.
-
decode
decode the base 64 encoded String data writing it to the given output stream- Returns:
- the number of bytes produced.
- Throws:
IOException
-