Home | History | Annotate | Download | only in x509

Lines Matching refs:oid

43      private ObjectIdentifier oid;
52 oid = derValue.getOID();
60 public OIDName(ObjectIdentifier oid) {
61 this.oid = oid;
65 * Create the OIDName from the String form of the OID
72 oid = new ObjectIdentifier(name);
86 * Encode the OID name into the DerOutputStream.
92 out.putOID(oid);
99 return ("OIDName: " + oid.toString());
103 * Returns this OID name.
106 return oid;
123 return oid.equals((Object)other.oid);
132 return oid.hashCode();