Searched defs:encodedLength (Results 1 - 4 of 4) 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/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/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;

Completed in 32 milliseconds