Search in sources :

Example 1 with PKCS10Attributes

use of sun.security.pkcs10.PKCS10Attributes in project jdk8u_jdk by JetBrains.

the class PKCS10AttrEncoding method main.

public static void main(String[] args) throws Exception {
    // initializations
    int len = ids.length;
    Object[] values = { new ObjectIdentifier("1.2.3.4"), new GregorianCalendar(1970, 1, 25, 8, 56, 7).getTime(), "challenging" };
    for (int j = 0; j < len; j++) {
        constructedMap.put(ids[j], values[j]);
    }
    X500Name subject = new X500Name("cn=Test");
    KeyPairGenerator keyGen = KeyPairGenerator.getInstance("DSA");
    String sigAlg = "DSA";
    keyGen.initialize(512);
    KeyPair pair = keyGen.generateKeyPair();
    X509Key publicKey = (X509Key) pair.getPublic();
    PrivateKey privateKey = pair.getPrivate();
    Signature signature = Signature.getInstance(sigAlg);
    signature.initSign(privateKey);
    // Create the PKCS10 request
    PKCS10Attribute[] attrs = new PKCS10Attribute[len];
    for (int j = 0; j < len; j++) {
        attrs[j] = new PKCS10Attribute(ids[j], values[j]);
    }
    PKCS10 req = new PKCS10(publicKey, new PKCS10Attributes(attrs));
    System.out.println("List of attributes in constructed PKCS10 " + "request: ");
    checkAttributes(req.getAttributes().getElements());
    // Encode the PKCS10 request and generate another PKCS10 request from
    // the encoded byte array
    req.encodeAndSign(subject, signature);
    PKCS10 resp = new PKCS10(req.getEncoded());
    System.out.println("List of attributes in DER encoded PKCS10 Request:");
    checkAttributes(resp.getAttributes().getElements());
    if (failedCount > 0) {
        throw new RuntimeException("Attributes Compared : Failed");
    }
    System.out.println("Attributes Compared : Pass");
}
Also used : PKCS10Attribute(sun.security.pkcs10.PKCS10Attribute) KeyPair(java.security.KeyPair) PrivateKey(java.security.PrivateKey) PKCS10Attributes(sun.security.pkcs10.PKCS10Attributes) GregorianCalendar(java.util.GregorianCalendar) X500Name(sun.security.x509.X500Name) KeyPairGenerator(java.security.KeyPairGenerator) X509Key(sun.security.x509.X509Key) PKCS10(sun.security.pkcs10.PKCS10) Signature(java.security.Signature) ObjectIdentifier(sun.security.util.ObjectIdentifier)

Example 2 with PKCS10Attributes

use of sun.security.pkcs10.PKCS10Attributes in project jdk8u_jdk by JetBrains.

the class PKCS10AttributeReader method main.

public static void main(String[] args) throws Exception {
    // Decode base64 encoded DER file
    byte[] pkcs10Bytes = Base64.getMimeDecoder().decode(ATTRIBS.getBytes());
    HashMap<ObjectIdentifier, Object> RequestStander = new HashMap() {

        {
            put(PKCS9Attribute.CHALLENGE_PASSWORD_OID, "GuessWhoAmI");
            put(PKCS9Attribute.SIGNING_TIME_OID, new Date(861720610000L));
            put(PKCS9Attribute.CONTENT_TYPE_OID, new ObjectIdentifier("1.9.50.51.52"));
        }
    };
    int invalidNum = 0;
    PKCS10Attributes resp = new PKCS10Attributes(new DerInputStream(pkcs10Bytes));
    Enumeration eReq = resp.getElements();
    int numOfAttrs = 0;
    while (eReq.hasMoreElements()) {
        numOfAttrs++;
        PKCS10Attribute attr = (PKCS10Attribute) eReq.nextElement();
        if (RequestStander.containsKey(attr.getAttributeId())) {
            if (RequestStander.get(attr.getAttributeId()).equals(attr.getAttributeValue())) {
                System.out.println(attr.getAttributeId() + " " + attr.getAttributeValue());
            } else {
                invalidNum++;
                System.out.println("< " + attr.getAttributeId() + " " + attr.getAttributeValue());
                System.out.println("< " + attr.getAttributeId() + " " + RequestStander.get(attr.getAttributeId()));
            }
        } else {
            invalidNum++;
            System.out.println("No" + attr.getAttributeId() + "in Certificate Request list");
        }
    }
    if (numOfAttrs != RequestStander.size()) {
        invalidNum++;
        System.out.println("Incorrect number of attributes.");
    }
    System.out.println();
    if (invalidNum > 0) {
        throw new RuntimeException("Attributes Compared with Stander :" + " Failed");
    }
    System.out.println("Attributes Compared with Stander: Pass");
}
Also used : PKCS10Attribute(sun.security.pkcs10.PKCS10Attribute) Enumeration(java.util.Enumeration) HashMap(java.util.HashMap) PKCS10Attributes(sun.security.pkcs10.PKCS10Attributes) DerInputStream(sun.security.util.DerInputStream) Date(java.util.Date) ObjectIdentifier(sun.security.util.ObjectIdentifier)

Aggregations

PKCS10Attribute (sun.security.pkcs10.PKCS10Attribute)2 PKCS10Attributes (sun.security.pkcs10.PKCS10Attributes)2 ObjectIdentifier (sun.security.util.ObjectIdentifier)2 KeyPair (java.security.KeyPair)1 KeyPairGenerator (java.security.KeyPairGenerator)1 PrivateKey (java.security.PrivateKey)1 Signature (java.security.Signature)1 Date (java.util.Date)1 Enumeration (java.util.Enumeration)1 GregorianCalendar (java.util.GregorianCalendar)1 HashMap (java.util.HashMap)1 PKCS10 (sun.security.pkcs10.PKCS10)1 DerInputStream (sun.security.util.DerInputStream)1 X500Name (sun.security.x509.X500Name)1 X509Key (sun.security.x509.X509Key)1