Skip to content

Commit e8a66d8

Browse files
committed
Add examples using the bootstrap methods.
1 parent 091506a commit e8a66d8

File tree

3 files changed

+142
-0
lines changed

3 files changed

+142
-0
lines changed

examples/README.md

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Example
2+
3+
# Client & Server requests
4+
5+
On this example we are going to see the Certificate Authority running, as well
6+
as a simple Server using TLS and a simple client doing TLS requests to the
7+
server.
8+
9+
The examples directory already contains a sample pki configuration with the
10+
password `password` hardcoded, but you can create your own using `step ca init`.
11+
12+
First we will start the certificate authority:
13+
```
14+
certificates $ bin/step-ca examples/pki/config/ca.json
15+
2018/11/02 18:29:25 Serving HTTPS on :9000 ...
16+
```
17+
18+
We will start the server and we will type `password` when step asks for the
19+
provisioner password:
20+
```
21+
certificates $ export STEPPATH=examples/pki
22+
certificates $ export STEP_CA_URL=https://localhost:9000
23+
certificates $ go run examples/server.go $(step ca new-token localhost))
24+
✔ Key ID: DmAtZt2EhmZr_iTJJ387fr4Md2NbzMXGdXQNW1UWPXk (mariano@smallstep.com)
25+
Please enter the password to decrypt the provisioner key:
26+
Listening on :8443 ...
27+
```
28+
29+
We try that using cURL with the system certificates it will return an error:
30+
```
31+
certificates $ curl https://localhost:8443
32+
curl: (60) SSL certificate problem: unable to get local issuer certificate
33+
More details here: https://curl.haxx.se/docs/sslcerts.html
34+
35+
curl performs SSL certificate verification by default, using a "bundle"
36+
of Certificate Authority (CA) public keys (CA certs). If the default
37+
bundle file isn't adequate, you can specify an alternate file
38+
using the --cacert option.
39+
If this HTTPS server uses a certificate signed by a CA represented in
40+
the bundle, the certificate verification probably failed due to a
41+
problem with the certificate (it might be expired, or the name might
42+
not match the domain name in the URL).
43+
If you'd like to turn off curl's verification of the certificate, use
44+
the -k (or --insecure) option.
45+
HTTPS-proxy has similar options --proxy-cacert and --proxy-insecure.
46+
```
47+
48+
But if we use the root certificate it will properly work:
49+
```
50+
certificates $ curl --cacert examples/pki/secrets/root_ca.crt https://localhost:8443
51+
Hello nobody at 2018-11-03 01:49:25.66912 +0000 UTC!!!
52+
```
53+
54+
Notice that in the response we see `nobody`, this is because the server didn't
55+
detected a TLS client configuration.
56+
57+
But if we the client with the certificate name Mike we'll see:
58+
```
59+
certificates $ export STEPPATH=examples/pki
60+
certificates $ export STEP_CA_URL=https://localhost:9000
61+
certificates $ go run examples/client.go $(step ca new-token Mike)
62+
✔ Key ID: DmAtZt2EhmZr_iTJJ387fr4Md2NbzMXGdXQNW1UWPXk (mariano@smallstep.com)
63+
Please enter the password to decrypt the provisioner key:
64+
Server responded: Hello Mike at 2018-11-03 01:52:52.678215 +0000 UTC!!!
65+
Server responded: Hello Mike at 2018-11-03 01:52:53.681563 +0000 UTC!!!
66+
Server responded: Hello Mike at 2018-11-03 01:52:54.682787 +0000 UTC!!!
67+
...
68+
```

examples/client.go

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"io/ioutil"
6+
"os"
7+
"time"
8+
9+
"github.com/smallstep/certificates/ca"
10+
)
11+
12+
func main() {
13+
if len(os.Args) != 2 {
14+
fmt.Fprintf(os.Stderr, "Usage: %s <token>\n", os.Args[0])
15+
os.Exit(1)
16+
}
17+
18+
token := os.Args[1]
19+
20+
client, err := ca.BootstrapClient(token)
21+
if err != nil {
22+
panic(err)
23+
}
24+
25+
for {
26+
resp, err := client.Get("https://localhost:8443")
27+
if err != nil {
28+
panic(err)
29+
}
30+
b, err := ioutil.ReadAll(resp.Body)
31+
resp.Body.Close()
32+
if err != nil {
33+
panic(err)
34+
}
35+
36+
fmt.Printf("Server responded: %s\n", b)
37+
time.Sleep(1 * time.Second)
38+
}
39+
}

examples/server.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"net/http"
6+
"os"
7+
"time"
8+
9+
"github.com/smallstep/certificates/ca"
10+
)
11+
12+
func main() {
13+
if len(os.Args) != 2 {
14+
fmt.Fprintf(os.Stderr, "Usage: %s <token>\n", os.Args[0])
15+
os.Exit(1)
16+
}
17+
18+
token := os.Args[1]
19+
20+
srv, err := ca.BootstrapServer(":8443", token, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
21+
name := "nobody"
22+
if r.TLS != nil && len(r.TLS.PeerCertificates) > 0 {
23+
name = r.TLS.PeerCertificates[0].Subject.CommonName
24+
}
25+
w.Write([]byte(fmt.Sprintf("Hello %s at %s!!!", name, time.Now().UTC())))
26+
}))
27+
if err != nil {
28+
panic(err)
29+
}
30+
31+
fmt.Println("Listening on :8443 ...")
32+
if err := srv.ListenAndServeTLS("", ""); err != nil {
33+
panic(err)
34+
}
35+
}

0 commit comments

Comments
 (0)