Home
last modified time | relevance | path

Searched refs:pem_array (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
DBASE64Encoder.java64 private final static char pem_array[] = { field in BASE64Encoder
90 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()
DBASE64Decoder.java77 private final static char pem_array[] = { field in BASE64Decoder
95 for (int i = 0; i < pem_array.length; i++) {
96 pem_convert_array[pem_array[i]] = (byte) i;