diff options
Diffstat (limited to 'examples/client/client.go')
| -rw-r--r-- | examples/client/client.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/client/client.go b/examples/client/client.go index 8bbc6b8..69e68e6 100644 --- a/examples/client/client.go +++ b/examples/client/client.go @@ -59,7 +59,7 @@ func init() { // openssl ecparam -genkey -name secp384r1 -out client.key // openssl req -new -x509 -sha512 -key client.key -out client.crt -days 365 // - cert, err = tls.LoadX509KeyPair("examples/client/client.crt", "examples/client/client.key") + cert, err = tls.LoadX509KeyPair("examples/client/localhost.crt", "examples/client/localhost.key") if err != nil { log.Fatal(err) } |