Searched refs:encodedLength (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBEncoderStream.java59 public static int encodedLength(byte[] b) { method in class:BEncoderStream
H A DQEncoderStream.java86 public static int encodedLength(byte[] b, boolean encodingWord) { method in class:QEncoderStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBASE64EncodingAlgorithm.java141 int encodedLength = encodedValue.length();
142 if (encodedLength == 0) {
146 int blockCount = encodedLength / 4;
149 if (encodedValue.charAt(encodedLength - 1) == '=') {
151 if (encodedValue.charAt(encodedLength - 2) == '=') {
214 final int encodedLength = blockCount * 4;
216 s.ensureCapacity(encodedLength + originalBufferSize);
236 s.setCharAt(originalBufferSize + encodedLength - 1, '=');
237 s.setCharAt(originalBufferSize + encodedLength - 2, '=');
240 s.setCharAt(originalBufferSize + encodedLength
[all...]
H A DHexadecimalEncodingAlgorithm.java92 int encodedLength = encodedValue.length();
93 if (encodedLength == 0) {
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHelloExtensions.java65 private int encodedLength; field in class:HelloExtensions
74 encodedLength = len + 2;
113 encodedLength = -1;
126 if (encodedLength >= 0) {
127 return encodedLength;
130 encodedLength = 0;
132 encodedLength = 2;
134 encodedLength += ext.length();
137 return encodedLength;
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSASignature.java60 private final int encodedLength; field in class:RSASignature
86 encodedLength = baseLength + oidLength + md.getDigestLength();
128 if (encodedLength > maxDataSize) {
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Signature.java329 int encodedLength;
332 encodedLength = 34;
334 encodedLength = 35;
336 encodedLength = 51;
338 encodedLength = 67;
340 encodedLength = 83;
344 if (encodedLength > maxDataSize) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java673 len = BEncoderStream.encodedLength(bytes);
675 len = QEncoderStream.encodedLength(bytes, encodingWord);

Completed in 58 milliseconds