Code Monkey home page Code Monkey logo

Comments (5)

shred avatar shred commented on July 18, 2024

Hi @kimmerin!

The CSRBuilder was designed for simplicity. acme4j itself does not care much about where the CSR comes from, it just expects a binary encoded CSR document. So you could also implement your own CSR generator if you have further demands on its contents.

Internally BouncyCastle's X500NameBuilder is used, so there is no way to offer a setX500Name() or setRDN() method without having to do major rewrites of the CSRBuilder.

However, what I could offer is to add a modifyX500Name(Consumer<X500NameBuilder> builder) method that permits to add further RDN to the X500NameBuilder, e.g.:

CSRBuilder csrb = new CSRBuilder();
csrb.addDomain("example.org");

// add a custom UID RDN
csrb.modifyX500Name(b -> b.addRDN(BCStyle.UID, "123456"));

csrb.sign(domainKeyPair);
byte[] csr = csrb.getEncoded();

Would that help you?

from acme4j.

kimmerin avatar kimmerin commented on July 18, 2024

I was thinking of something like this:

public void addValue(String attName, String value) {
    ASN1ObjectIdentifier oid = X500Name.getDefaultStyle().attrNameToOID(attName);
    addValue(oid, value);
}

public void addValue(ASN1ObjectIdentifier oid, String value) {
    if (oid.equals(BCStyle.CN)) {
        addDomain(value);
        return;
    }
    namebuilder.addRDN(oid, value);
}

I can do this change, add javadocs, create unit tests around it and start a pull request if you want.

from acme4j.

shred avatar shred commented on July 18, 2024

Sure, a pull request would be fine! Thank you! ๐Ÿ˜„

from acme4j.

shred avatar shred commented on July 18, 2024

Closed via #129.

from acme4j.

shred avatar shred commented on July 18, 2024

Sorry for the delay! Your change is now published in acme4j v2.14. It is available in the release section, and should be available at Maven Central within the next couple of hours.

from acme4j.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.