Searched refs:PKCS10Attribute (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10Attributes.java48 * @see PKCS10Attribute
52 private Hashtable<String, PKCS10Attribute> map =
53 new Hashtable<String, PKCS10Attribute>(3);
61 * Create the object from the array of PKCS10Attribute objects.
63 * @param attrs the array of PKCS10Attribute objects.
65 public PKCS10Attributes(PKCS10Attribute[] attrs) {
84 PKCS10Attribute attr = new PKCS10Attribute(attrs[i]);
108 Collection<PKCS10Attribute> allAttrs = map.values();
109 PKCS10Attribute[] attrib
[all...]
H A DPKCS10Attribute.java56 public class PKCS10Attribute implements DerEncoder { class in inherits:DerEncoder
71 public PKCS10Attribute(DerValue derVal) throws IOException { method in class:PKCS10Attribute
85 public PKCS10Attribute(ObjectIdentifier attributeId, method in class:PKCS10Attribute
96 public PKCS10Attribute(PKCS9Attribute attr) { method in class:PKCS10Attribute
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java81 import sun.security.pkcs.PKCS10Attribute;
1226 Iterator<PKCS10Attribute> attrs = req.getAttributes().getAttributes().iterator();
1228 PKCS10Attribute attr = attrs.next();
1331 new PKCS10Attribute(PKCS9Attribute.EXTENSION_REQUEST_OID, ext));
2203 for (PKCS10Attribute attr: req.getAttributes().getAttributes()) {

Completed in 559 milliseconds