Searched defs:base64 (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DBase64.java49 * outside the base64 alphabet.</p></li>
56 * base64 alphabet.</p></li>
65 * or other characters not found in the base64 alphabet table are
83 * <a href="#basic">Basic</a> type base64 encoding scheme.
93 * <a href="#url">URL and Filename safe</a> type base64
104 * <a href="#mime">MIME</a> type base64 encoding scheme.
114 * <a href="#mime">MIME</a> type base64 encoding scheme
132 int[] base64 = Decoder.fromBase64;
134 if (base64[b & 0xff] != -1)
136 "Illegal base64 lin
758 private final char[] base64; // byte->base64 mapping field in class:Base64.EncOutputStream
764 EncOutputStream(OutputStream os, char[] base64, byte[] newline, int linemax, boolean doPadding) argument
868 private final int[] base64; // base64 -> byte mapping field in class:Base64.DecInputStream
877 DecInputStream(InputStream is, int[] base64, boolean isMIME) argument
[all...]

Completed in 67 milliseconds