Searched refs:pem_array (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DBASE64Encoder.java64 private final static char pem_array[] = { field in class:BASE64Encoder
90 outStream.write(pem_array[(a >>> 2) & 0x3F]);
91 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
98 outStream.write(pem_array[(a >>> 2) & 0x3F]);
99 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
100 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
106 outStream.write(pem_array[(a >>> 2) & 0x3F]);
107 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
108 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
109 outStream.write(pem_array[
[all...]
H A DBASE64Decoder.java77 private final static char pem_array[] = { field in class:BASE64Decoder
95 for (int i = 0; i < pem_array.length; i++) {
96 pem_convert_array[pem_array[i]] = (byte) i;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64EncoderStream.java133 private final static char pem_array[] = { field in class:BASE64EncoderStream
158 out.write(pem_array[(a >>> 2) & 0x3F]);
159 out.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
166 out.write(pem_array[(a >>> 2) & 0x3F]);
167 out.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
168 out.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
174 out.write(pem_array[(a >>> 2) & 0x3F]);
175 out.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
176 out.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
177 out.write(pem_array[
[all...]
H A DBASE64DecoderStream.java135 private final static char pem_array[] = { field in class:BASE64DecoderStream
151 for(int i = 0; i < pem_array.length; i++)
152 pem_convert_array[pem_array[i]] = (byte) i;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java279 private final static char pem_array[] = { field in class:DigestMD5Base
313 nonce[j++] = (byte)(pem_array[(a >>> 2) & 0x3F]);
314 nonce[j++] = (byte)(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
315 nonce[j++] = (byte)(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
316 nonce[j++] = (byte)(pem_array[c & 0x3F]);

Completed in 87 milliseconds