HomeSort by relevance Sort by last modified time
    Searched refs:lenByte (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/sun/security/util/
DerIndefLenConverter.java 151 int lenByte = data[dataPos++] & 0xff;
152 if (isIndefinite(lenByte)) {
157 if (isLongForm(lenByte)) {
158 lenByte &= LEN_MASK;
159 if (lenByte > 4)
161 if ((dataSize - dataPos) < (lenByte + 1))
163 for (int i = 0; i < lenByte; i++)
166 curLen = (lenByte & LEN_MASK);
181 int lenByte = data[dataPos++] & 0xff;
182 if (isIndefinite(lenByte)) {
    [all...]
DerInputStream.java 386 byte lenByte = (byte)buffer.read();
387 int len = getLength((lenByte & 0xff), buffer);
395 indefData[1] = lenByte;
583 static int getLength(int lenByte, InputStream in) throws IOException {
586 tmp = lenByte;
DerValue.java 259 byte lenByte = (byte)in.read();
260 length = DerInputStream.getLength((lenByte & 0xff), in);
267 indefData[1] = lenByte;
377 byte lenByte = (byte)in.read();
378 length = DerInputStream.getLength((lenByte & 0xff), in);
384 indefData[1] = lenByte;

Completed in 1098 milliseconds