smallstep / go-grpc-example

An example of using TLS with gRPC in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-grpc-example

An example of using TLS with gRPC in Go.

Prerequisites

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

Test

Before continuing compile the example:

make

Using ACME

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

Using a certificate

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.

mTLS

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

About

An example of using TLS with gRPC in Go


Languages

Language:Go 60.5%Language:Smarty 15.9%Language:Shell 10.6%Language:Dockerfile 8.5%Language:Makefile 4.5%