Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8932107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:16:03+00:00 2026-06-15T09:16:03+00:00

Good day. I recently create X.509 certificate by using bouncy castle API. I need

  • 0

Good day.

I recently create X.509 certificate by using bouncy castle API.

I need to save the certificate result rather than display the result.

I tried to use FileOutputStream, but it does not work.

regards

the result is like follows

—–BEGIN CERTIFICATE—–
MIICeTCCAeKgAwIBAgIGATs8OWsXMA0GCSqGSIb3DQEBCwUAMBsxGTAXBgNVBAMT…

—–END CERTIFICATE—–

The code is belows

import java.io.FileOutputStream;
//example of a basic CA


public class PKCS10CertCreateExample
{
    public static X509Certificate[] buildChain() throws Exception
    {
        //create the certification request
        KeyPair pair = chapter7.Utils.generateRSAKeyPair();
        PKCS10CertificationRequest request =
PKCS10ExtensionExample.generateRequest(pair);

        //create a root certificate
        KeyPair rootPair=chapter7.Utils.generateRSAKeyPair();
        X509Certificate rootCert = X509V1CreateExample.generateV1Certificate
(rootPair);

        //validate the certification request
        if(!request.verify("BC"))
        {
            System.out.println("request failed to verify!");
            System.exit(1);
        }

        //create the certificate using the information in the request
        X509V3CertificateGenerator certGen = new X509V3CertificateGenerator();

        certGen.setSerialNumber(BigInteger.valueOf(System.currentTimeMillis()));
        certGen.setIssuerDN(rootCert.getSubjectX500Principal());
        certGen.setNotBefore(new Date(System.currentTimeMillis()));
        certGen.setNotAfter(new Date(System.currentTimeMillis()+50000));
        certGen.setSubjectDN(request.getCertificationRequestInfo().getSubject());
        certGen.setPublicKey(request.getPublicKey("BC"));
        certGen.setSignatureAlgorithm("SHA256WithRSAEncryption");

    certGen.addExtension(X509Extensions.AuthorityKeyIdentifier, false, new AuthorityKeyIdentifierStructure(rootCert));
    certGen.addExtension(X509Extensions.SubjectKeyIdentifier, false, new SubjectKeyIdentifierStructure(request.getPublicKey("BC")));
    certGen.addExtension(X509Extensions.BasicConstraints, true, new BasicConstraints(false));
        //certGen.addExtension(X509Extensions.KeyUsage, true, new BasicConstraints(false));
        certGen.addExtension(X509Extensions.KeyUsage, true, new KeyUsage(KeyUsage.digitalSignature | KeyUsage.keyEncipherment));
        certGen.addExtension(X509Extensions.ExtendedKeyUsage, true, new ExtendedKeyUsage(KeyPurposeId.id_kp_serverAuth));

        //extract the extension request attribute
        ASN1Set attributes = request.getCertificationRequestInfo().getAttributes();

        for(int i=0;i!=attributes.size();i++)
        {
           Attribute attr = Attribute.getInstance(attributes.getObjectAt(i));

           //process extension request
           if(attr.getAttrType().equals(PKCSObjectIdentifiers.pkcs_9_at_extensionRequest))
           {
                   X509Extensions extensions = X509Extensions.getInstance(attr.getAttrValues().getObjectAt(0));

                   Enumeration<?> e = extensions.oids();
                   while(e.hasMoreElements())
                   {
                       DERObjectIdentifier oid = (DERObjectIdentifier)e.nextElement();
                       X509Extension ext = extensions.getExtension(oid);

                       certGen.addExtension(oid, ext.isCritical(), ext.getValue().getOctets());
                   }   
               }       
           }
        X509Certificate issuedCert = certGen.generateX509Certificate(rootPair.getPrivate());
        return new X509Certificate[]{issuedCert, rootCert};
        }


        public static void main(String[] args) throws Exception
        {
            X509Certificate[] chain = buildChain();
            PEMWriter pemWrt = new PEMWriter(new OutputStreamWriter(System.out));
            pemWrt.writeObject(chain[0]);
            //pemWrt.writeObject(chain[1]);
            pemWrt.close();

            //write it out
            //FileOutputStream fOut = new FileOutputStream("pkcs10req.req");
            //fOut.write(chain[0].toString());
            //fOut.write()
            //System.out.println(chain[0].toString());          
            //fOut.close();


        }

    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:16:04+00:00Added an answer on June 15, 2026 at 9:16 am

    Insert following method..

        public static void pemEncodeToFile(String filename, Object obj, char[] password) throws Exception{
        PEMWriter pw = new PEMWriter(new FileWriter(filename));
           if (password != null && password.length > 0) {
               pw.writeObject(obj, "DESEDE", password, new SecureRandom());
           } else {
               pw.writeObject(obj);
           }
           pw.flush();
           pw.close();
        }
    

    and call the pemEncodeToFile method like this.

    pemEncodeToFile("pkcs10.pem", chain[0], null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Good day. I need to teach Windows CryptoAPI to encrypt the message with private
Good day, I have like 15 images I need to be buttons. I have
Good day! Recently I have been into backbone/require, and getting to learn some really
Good day. I'm using the WebClient class in my C# application in order to
Good day, I need to extract portion of string which can looks like this:
Good day, I have a requirement to create a kind of book app with
Good day everyone! I am using the T-SQL ISDATE() function with a date column
good day, I am using Joomla 1.5 and wanted to make a real estate
Good day everyone. Recently I was given a task to develop an application to
Good Day to All, I need to excecute a client script before OnLoggedOut event

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.