Git Product home page Git Product logo

ca's Introduction

Walkthrough

This repo contains bash scripts for issuing client and server certificates used for TESTING (not PRODUCTION).

USE at your OWN RISK!

  1. to create a new CA (and wipe any previous one)

    ./init-ca.sh

  2. to issue a server certificate providing multiple FQDNs and IPs (subjectAlternativeNames)

    ./gen-server-cert.sh myservername myservername.local 127.0.0.1

  3. to issue a client certificate

    ./gen-client-cert.sh kpe

Each time you issue a certificate, the following files gets written locally, i.e. calling:

./gen-server-cert.sh localhost 127.0.0.1

would result in (you would usually only need either the .p12 or the .key/.crt files):

  • localhost.key - private key
  • localhost.crt - signed certificate
  • localhost-and-ca.crt - signed certificate and root CA chain
  • localhost.p12 - PKCS12 key store with private key and certificate chain
  • localhost.nopass.p12 - PKCS12 like above but without password
  • localhost.pkcs12 - PKCS12 like above but with name/alias for the private key
  • localhost.jks - a Java key store file
  • localhost.csr - the certificate sign request

All password protected key stores would use the password specified in gencert.sh.

Renewing certificates

To renew a certificate, call the ./renew-cert.sh script with the certificate base file name and optional expiration in days:

./renew-cert.sh ca 3650       # for the root CA
./renew-cert.sh localhost     # defaults to 365 days

ca's People

Contributors

kpe avatar

Stargazers

 avatar

Watchers

James Cloos avatar

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.