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

  /libcore/ojluni/src/main/java/sun/security/util/
DerInputBuffer.java 192 public byte[] getBitString(int len) throws IOException {
218 byte[] getBitString() throws IOException {
219 return getBitString(available());
DerInputStream.java 215 public byte[] getBitString() throws IOException {
219 return buffer.getBitString(getLength(buffer));
DerValue.java 559 public byte[] getBitString() throws IOException {
562 "DerValue.getBitString, not a bit string " + tag);
564 return buffer.getBitString();
575 "DerValue.getBitString, not a bit string " + tag);
613 public byte[] getBitString(boolean tagImplicit) throws IOException {
616 throw new IOException("DerValue.getBitString, not a bit string "
619 return buffer.getBitString();
633 throw new IOException("DerValue.getBitString, not a bit string "

Completed in 56 milliseconds