Home | History | Annotate | Download | only in binary

Lines Matching refs:octet

588      * Returns whether or not the <code>octet</code> is in the base 64 alphabet.
590 * @param octet
595 public static boolean isBase64(byte octet) {
596 return octet == PAD || (octet >= 0 && octet < DECODE_TABLE.length && DECODE_TABLE[octet] != -1);