Lines Matching defs:oid
159 ObjectIdentifier oid;
161 oid = attribs[i].getOID();
162 if (attributes.containsKey(oid))
168 attributes.put(oid, attribs[i]);
198 ObjectIdentifier oid;
214 oid = attrib.getOID();
216 if (attributes.get(oid) != null)
217 throw new IOException("Duplicate PKCS9 attribute: " + oid);
220 !permittedAttributes.containsKey(oid))
221 throw new IOException("Attribute " + oid +
224 attributes.put(oid, attrib);
264 public PKCS9Attribute getAttribute(ObjectIdentifier oid) {
265 return attributes.get(oid);
281 ObjectIdentifier oid;
297 public Object getAttributeValue(ObjectIdentifier oid)
300 Object value = getAttribute(oid).getValue();
303 throw new IOException("No value found for attribute " + oid);
312 ObjectIdentifier oid = PKCS9Attribute.getOID(name);
314 if (oid == null)
318 return getAttributeValue(oid);
329 ObjectIdentifier oid;