Home | History | Annotate | Download | only in x509

Lines Matching refs:id

41     private BitArray    id;
46 * @param id the byte array containing the unique identifier.
48 public UniqueIdentity(BitArray id) {
49 this.id = id;
55 * @param id the byte array containing the unique identifier.
57 public UniqueIdentity(byte[] id) {
58 this.id = new BitArray(id.length*8, id);
69 id = derVal.getUnalignedBitString(true);
80 id = derVal.getUnalignedBitString(true);
87 return ("UniqueIdentity:" + id.toString() + "\n");
98 byte[] bytes = id.toByteArray();
99 int excessBits = bytes.length*8 - id.length();
109 * Return the unique id.
112 if (id == null) return null;
114 return id.toBooleanArray();