Home | History | Annotate | Download | only in asn1

Lines Matching refs:bit

26  * Represents ASN.1 bit string value
50 * Constructs bit string
52 * @param bytes - array of bytes that represents bit string,
65 throw new IllegalArgumentException("For empty bit string unused bits MUST be 0");
73 * Constructs bit string from array of booleans
89 public boolean getBit(int bit) {
90 int offset = bit % 8;
91 int index = bit / 8;
95 public void setBit(int bit, boolean value) {
96 int offset = bit % 8;
97 int index = bit / 8;