Back to project page AdbSsh.
The source code is released under:
GNU General Public License
If you think the Android project AdbSsh listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cgutman.adblib; /* w ww . jav a 2 s. c om*/ /** * This interface specifies the required functions for AdbCrypto to * perform Base64 encoding of its public key. * @author Cameron Gutman */ public interface AdbBase64 { /** * This function must encoded the specified data as a base 64 string, without * appending any extra newlines or other characters. * @param data Data to encode * @return String containing base 64 encoded data */ public String encodeToString(byte[] data); }