Searched refs:indefData (Results 1 – 3 of 3) sorted by relevance
265 byte[] indefData = new byte[readLen + offset]; in DerValue()266 indefData[0] = tag; in DerValue()267 indefData[1] = lenByte; in DerValue()269 dis.readFully(indefData, offset, readLen); in DerValue()272 inbuf = new DerInputBuffer(derIn.convert(indefData)); in DerValue()382 byte[] indefData = new byte[readLen + offset]; in init()383 indefData[0] = tag; in init()384 indefData[1] = lenByte; in init()386 dis.readFully(indefData, offset, readLen); in init()389 in = new ByteArrayInputStream(derIn.convert(indefData)); in init()
393 byte[] indefData = new byte[readLen + offset]; in readVector()394 indefData[0] = tag; in readVector()395 indefData[1] = lenByte; in readVector()397 dis.readFully(indefData, offset, readLen); in readVector()400 buffer = new DerInputBuffer(derIn.convert(indefData)); in readVector()
309 byte[] convert(byte[] indefData) throws IOException { in convert() argument310 data = indefData; in convert()341 System.arraycopy(indefData, dataSize, in convert()