Searched refs:pem_array (Results 1 – 2 of 2) sorted by relevance
64 private final static char pem_array[] = { field in BASE64Encoder90 outStream.write(pem_array[(a >>> 2) & 0x3F]); in encodeAtom()91 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]); in encodeAtom()98 outStream.write(pem_array[(a >>> 2) & 0x3F]); in encodeAtom()99 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]); in encodeAtom()100 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]); in encodeAtom()106 outStream.write(pem_array[(a >>> 2) & 0x3F]); in encodeAtom()107 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]); in encodeAtom()108 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]); in encodeAtom()109 outStream.write(pem_array[c & 0x3F]); in encodeAtom()
77 private final static char pem_array[] = { field in BASE64Decoder95 for (int i = 0; i < pem_array.length; i++) {96 pem_convert_array[pem_array[i]] = (byte) i;