Searched defs:getBitString (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
H A DDerInputBuffer.java199 public byte[] getBitString(int len) throws IOException { method in class:DerInputBuffer
225 byte[] getBitString() throws IOException { method in class:DerInputBuffer
226 return getBitString(available());
H A DDerInputStream.java240 public byte[] getBitString() throws IOException { method in class:DerInputStream
244 return buffer.getBitString(getLength(buffer));
H A DDerValue.java563 public byte[] getBitString() throws IOException { method in class:DerValue
566 "DerValue.getBitString, not a bit string " + tag);
568 return buffer.getBitString();
579 "DerValue.getBitString, not a bit string " + tag);
617 public byte[] getBitString(boolean tagImplicit) throws IOException { method in class:DerValue
620 throw new IOException("DerValue.getBitString, not a bit string "
623 return buffer.getBitString();
637 throw new IOException("DerValue.getBitString, not a bit string "

Completed in 40 milliseconds