🛡️ A private certificate authority (X.509 & SSH) & ACME server for secure automated certificate management, so you can use TLS everywhere & SSO for SSH.
Find a file
2021-07-02 19:05:17 -07:00
.github [action] forgot to add default labeler config file 2021-05-26 15:54:45 -07:00
acme Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
api Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
authority Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
autocert Use REAMDE.md suggested in code review. 2019-06-18 17:11:29 -07:00
ca Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
cas Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
cmd Fix wrong format of the first flag on step-ca --help 2021-03-24 14:55:34 -07:00
commands first commit 2021-05-19 15:20:16 -07:00
db Fix typos. 2020-10-05 17:20:22 -07:00
debian [action] debian rules syntax 2021-04-13 16:53:30 -07:00
docker Change HEALTHCHECK to use step ca health. Change shell CMD exec to skip redundant /bin/sh -c 2020-09-08 09:44:35 -07:00
docs Small docs cleanup 2021-05-10 15:14:29 -07:00
errs Fix error message of bad request 2020-09-10 23:45:44 +09:00
examples Fix example and use ClientCAs. 2020-09-02 15:10:11 -07:00
kms Add tests for CreateDecrypter 2021-05-26 16:15:26 -07:00
logging Log successful /health requests at Trace lvl 2021-03-09 14:52:13 +00:00
make [action] change step-certificates to step-ca where possible 2021-03-02 11:58:42 -08:00
monitoring ca-component -> certificates 2018-10-31 21:36:01 -07:00
pki first commit 2021-05-19 15:20:16 -07:00
scep Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
server ServetTLS => ServeTLS in function docs 2018-12-20 12:10:32 -05:00
systemd Revert systemd renewer unit change that was incorrect 2021-05-03 16:19:36 -07:00
templates Update sshd_config.tpl to a Match all block. 2021-04-12 18:37:10 -07:00
.dockerignore Remove dockerignore files that are in the repo. 2021-04-13 18:24:02 -07:00
.gitattributes Added version operability for git archive tarball (non git repo) 2019-02-21 14:51:03 -08:00
.gitignore Add support for TLS-ALPN-01 challenge. 2020-02-07 14:37:13 -05:00
.golangci.yml Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
.goreleaser.yml Zip the windows release 2021-05-10 16:58:20 -07:00
.VERSION Added version operability for git archive tarball (non git repo) 2019-02-21 14:51:03 -08:00
.version.sh Added version operability for git archive tarball (non git repo) 2019-02-21 14:51:03 -08:00
CHANGELOG.md first pass at README 2018-11-05 20:37:58 -08:00
go.mod Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
go.sum Admin level API for provisioner mgmt v1 2021-07-02 19:05:17 -07:00
icon.png Commit icons. 2019-06-12 16:22:39 -07:00
icon.svg Commit icons. 2019-06-12 16:22:39 -07:00
LICENSE Add full version of the license. 2020-05-26 12:21:09 -07:00
Makefile Remove binary-* recipes from Makefile 2021-05-11 07:54:36 -07:00
README.md Updates to README 2021-04-06 12:58:36 -07:00

Step Certificates

step-ca is an online certificate authority for secure, automated certificate management. It's the server counterpart to the step CLI tool.

You can use it to:

  • Issue X.509 certificates for your internal infrastructure:
    • HTTPS certificates that work in browsers (RFC5280 and CA/Browser Forum compliance)
    • TLS certificates for VMs, containers, APIs, mobile clients, database connections, printers, wifi networks, toaster ovens...
    • Client certificates to enable mutual TLS (mTLS) in your infra. mTLS is an optional feature in TLS where both client and server authenticate each other. Why add the complexity of a VPN when you can safely use mTLS over the public internet?
  • Issue SSH certificates:
    • For people, in exchange for single sign-on ID tokens
    • For hosts, in exchange for cloud instance identity documents
  • Easily automate certificate management:

Whatever your use case, step-ca is easy to use and hard to misuse, thanks to safe, sane defaults.

Questions? Find us in Discussions.

Website | Documentation | Installation | Getting Started | Contributor's Guide

GitHub release CA Image Go Report Card Build Status License CLA assistant

GitHub stars Twitter followers

Features

🦾 A fast, stable, flexible private CA

Setting up a public key infrastructure (PKI) is out of reach for many small teams. step-ca makes it easier.

⚙️ Many ways to automate

There are several ways to authorize a request with the CA and establish a chain of trust that suits your flow.

You can issue certificates in exchange for:

🏔 Your own private ACME server

ACME is the protocol used by Let's Encrypt to automate the issuance of HTTPS certificates. It's super easy to issue certificates to any ACMEv2 (RFC8555) client.

👩🏽‍💻 An online SSH Certificate Authority

  • Delegate SSH authentication to step-ca by using SSH certificates instead of public keys and authorized_keys files
  • For user certificates, connect SSH to your single sign-on provider, to improve security with short-lived certificates and MFA (or other security policies) via any OAuth OIDC provider.
  • For host certificates, improve security, eliminate TOFU warnings, and set up automated host certificate renewal.

🤓 A general purpose PKI tool, via step CLI integration

Installation

See our installation docs here.

Documentation

Documentation can be found in a handful of different places:

  1. On the web at https://smallstep.com/docs/step-ca.

  2. On the command line with step help ca xxx where xxx is the subcommand you are interested in. Ex: step help ca provisioner list.

  3. In your browser, by running step help --http=:8080 ca from the command line and visiting http://localhost:8080.

  4. The docs folder is being deprecated, but it still has some documentation and tutorials.

Feedback?