Package com.mku.convert
Interface IBase64
public interface IBase64
Interface for Base64 conversion implementations.
-
Method Summary
-
Method Details
-
decode
Decode a Base64 string to byte array- Parameters:
text
- String to be converted.- Returns:
- Byte array of converted data.
-
encode
Encode a byte array to Base64 string.- Parameters:
data
- The byte array to be converted.- Returns:
- Text string of converted data.
-