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