TBR: veyron/services/identity: Fix instructions for generating tls cert
and key.

Change-Id: I0e8b19b1f573a6bb40c95f7c7382683023c66f83
diff --git a/services/identity/identityd/main.go b/services/identity/identityd/main.go
index 0ed4b50..4a9f96b 100644
--- a/services/identity/identityd/main.go
+++ b/services/identity/identityd/main.go
@@ -78,7 +78,7 @@
 	fmt.Fprintf(os.Stderr, `%s starts an HTTP server that brokers blessings after authenticating through OAuth.
 
 To generate TLS certificates so the HTTP server can use SSL:
-go run $GOROOT/src/pkg/crypto/tls/generate_cert.go --host <IP address>
+v23 go run $GOROOT/src/crypto/tls/generate_cert.go --host <IP address>
 
 To use Google as an OAuth provider the --google_config_* flags must be set to point to
 the a JSON file obtained after registering the application with the Google Developer Console
diff --git a/services/identity/identityd_test/main.go b/services/identity/identityd_test/main.go
index 81f7dc4..6556f6e 100644
--- a/services/identity/identityd_test/main.go
+++ b/services/identity/identityd_test/main.go
@@ -40,7 +40,7 @@
 mocks out oauth, auditing, and revocation.
 
 To generate TLS certificates so the HTTP server can use SSL:
-go run $GOROOT/src/pkg/crypto/tls/generate_cert.go --host <IP address>
+v23 go run $GOROOT/src/crypto/tls/generate_cert.go --host <IP address>
 
 Flags:
 `, os.Args[0])