Package org.bson.internal
Class Base64
- java.lang.Object
-
- org.bson.internal.Base64
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static byte[]
decode(String s)
Decodes the given Base64-encoded string.static String
encode(byte[] in)
Encodes the given byte array into a Base64-encoded string.
-
-
-
Method Detail
-
decode
public static byte[] decode(String s)
Decodes the given Base64-encoded string.- Parameters:
s
- the Base64-encoded string- Returns:
- the decoded byte array
-
encode
public static String encode(byte[] in)
Encodes the given byte array into a Base64-encoded string.- Parameters:
in
- the byte array- Returns:
- the Base64-encoded string
-
-