An example of using TLS with gRPC in Go.
The following examples requires step
and step-ca
.
Once installed initialize step-ca
with:
step ca init
Add a new ACME provisioner running:
step ca provisioner add --type acme acme
And start step-ca:
step-ca $(step path)/config/ca.json
Before continuing compile the example:
make
Run the ACME server using your private CA, let's say it's in https://localhost:9000:
bin/server-acme --directory https://localhost:9000/acme/acme/directory \
--cacert $(step path)/certs/root_ca.crt
And test it with grpcurl
:
$ grpcurl -cacert $(step path)/certs/root_ca.crt -d '{"name":"Smallstep"}' $(hostname):443 helloworld.Greeter/SayHello
{
"message": "Hello Smallstep"
}
Or the client
$ bin/client --cacert ~/.step/certs/root_ca.crt
What's your name? Smallstep
Greeting: Hello Smallstep
First create a certificate running:
step ca certificate $(hostname) local.crt local.key
And run server-cert
with:
bin/server-cert --cert local.crt --key local.key
And you can test it in the same way as before.
To enable mTLS to server-acme
or server-cert
just add the --mtls
flag to
the previous commands. And if you haven't installed step's root certificate in
your truststore, make sure to add --cacert $(step path)/certs/root_ca.crt
too.
Run bin/server-acme
or bin/server-cert
bin/server-acme --directory https://localhost:9000/acme/acme/directory
--cacert $(step path)/certs/root_ca.crt \
--cert local.crt --key local.key
bin/server-cert --cacert $(step path)/certs/root_ca.crt \
--cert local.crt --key local.key
And test it with the same or a different certificate from step-ca
:
bin/client --cacert $(step path)/certs/root_ca.crt \
--cert local.crt --key local.key