All Downloads are FREE. Search and download functionalities are using the official Maven repository.

craterdog.security.CertificateAuthorityGenerator Maven / Gradle / Ivy

Go to download

This project defines a tar.gz bundle that contains scripts for generating and signing both private certificate authorities and client certificates from scratch or based on certificate signing requests.

There is a newer version: 3.26
Show newest version
/************************************************************************
 * Copyright (c) Crater Dog Technologies(TM).  All Rights Reserved.     *
 ************************************************************************
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.        *
 *                                                                      *
 * This code is free software; you can redistribute it and/or modify it *
 * under the terms of The MIT License (MIT), as published by the Open   *
 * Source Initiative. (See http://opensource.org/licenses/MIT)          *
 ************************************************************************/
package craterdog.security;

import craterdog.primitives.Tag;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.security.InvalidKeyException;
import java.security.KeyPair;
import java.security.KeyStore;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SignatureException;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import org.slf4j.ext.XLogger;
import org.slf4j.ext.XLoggerFactory;


/**
 * This class provides a tool for generating new private certificate authorities.
 *
 * @author Derk Norton
 */
public class CertificateAuthorityGenerator {

    static XLogger logger = XLoggerFactory.getXLogger(CertificateAuthorityGenerator.class);

    static private final String CA_ALIAS = "Signer";

    /**
     * The main method for this application.  It expects the following arguments:
     * 
    *
  1. The name of the target environment (e.g. Sandbox, PreProd, Production, etc.).
  2. *
  3. The name of the organization that will own the certificate authority (optional).
  4. *
  5. The name of the country in which the organization resides (optional, but requires organization).
  6. *
* * @param args The arguments that were passed into this program. */ static public void main(String[] args) { String environment = args[0]; String organization = args.length > 1 ? args[1] : "Crater Dog Technologies™"; String country = args.length > 2 ? args[2] : "US"; String filePrefix = environment + "-CA"; try (FileOutputStream output = new FileOutputStream(filePrefix + ".p12"); FileWriter pwFile = new FileWriter(filePrefix + ".pw")) { logger.info("Generating a new key pair for the CA..."); RsaCertificateManager manager = new RsaCertificateManager(); KeyPair caKeyPair = manager.generateKeyPair(); PublicKey caPublicKey = caKeyPair.getPublic(); PrivateKey caPrivateKey = caKeyPair.getPrivate(); logger.info("Generating a self-signed CA certificate..."); StringBuilder subjectBuilder = new StringBuilder(); subjectBuilder.append("CN="); subjectBuilder.append(organization); subjectBuilder.append(" "); subjectBuilder.append(environment); subjectBuilder.append(" Private Certificate Authority, O="); subjectBuilder.append(organization); subjectBuilder.append(", C="); subjectBuilder.append(country); String caSubject = subjectBuilder.toString(); BigInteger caSerialNumber = new BigInteger(new Tag(16).toBytes()); long lifetime = 30L /*years*/ * 365L /*days*/ * 24L /*hours*/ * 60L /*minutes*/ * 60L /*seconds*/ * 1000L /*milliseconds*/; X509Certificate caCertificate = manager.createCertificateAuthority(caPrivateKey, caPublicKey, caSubject, caSerialNumber, lifetime); caCertificate.verify(caPublicKey); logger.info("Creating the CA key store..."); char[] caPassword = new Tag(16).toString().toCharArray(); KeyStore caKeyStore = manager.createPkcs12KeyStore(CA_ALIAS, caPassword, caPrivateKey, caCertificate); logger.info("Writing out the key store and password to files..."); manager.saveKeyStore(output, caKeyStore, caPassword); pwFile.write(caPassword); } catch (CertificateException | NoSuchAlgorithmException | InvalidKeyException | NoSuchProviderException | SignatureException | IOException e) { logger.info("An error occurred while attempting to generate the certificate authority:", e); System.exit(1); } System.exit(0); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy