コード例 #1
0
ファイル: Base32.java プロジェクト: hilbix/i2p
 /** @param source The data to convert non-null */
 public static String encode(byte[] source) {
   StringBuilder buf = new StringBuilder((source.length + 7) * 8 / 5);
   encodeBytes(source, buf);
   return buf.toString();
 }