Install cfssl, cfssljson using brew
parent
e8d728d016
commit
f8e394ff0c
|
@ -7,10 +7,18 @@ In this lab you will install the command line utilities required to complete thi
|
||||||
|
|
||||||
The `cfssl` and `cfssljson` command line utilities will be used to provision a [PKI Infrastructure](https://en.wikipedia.org/wiki/Public_key_infrastructure) and generate TLS certificates.
|
The `cfssl` and `cfssljson` command line utilities will be used to provision a [PKI Infrastructure](https://en.wikipedia.org/wiki/Public_key_infrastructure) and generate TLS certificates.
|
||||||
|
|
||||||
Download and install `cfssl` and `cfssljson` from the [cfssl repository](https://pkg.cfssl.org):
|
|
||||||
|
|
||||||
### OS X
|
### OS X
|
||||||
|
|
||||||
|
#### Using Homebrew:
|
||||||
|
|
||||||
|
```
|
||||||
|
brew install cfssl
|
||||||
|
```
|
||||||
|
|
||||||
|
**[ OR ]**
|
||||||
|
|
||||||
|
#### From the [cfssl repository](https://pkg.cfssl.org):
|
||||||
|
|
||||||
```
|
```
|
||||||
curl -o cfssl https://pkg.cfssl.org/R1.2/cfssl_darwin-amd64
|
curl -o cfssl https://pkg.cfssl.org/R1.2/cfssl_darwin-amd64
|
||||||
curl -o cfssljson https://pkg.cfssl.org/R1.2/cfssljson_darwin-amd64
|
curl -o cfssljson https://pkg.cfssl.org/R1.2/cfssljson_darwin-amd64
|
||||||
|
|
Loading…
Reference in New Issue