aboutsummaryrefslogtreecommitdiff
path: root/client/main.go
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2016-05-18 21:30:34 +0100
committerNiall Sheridan <nsheridan@gmail.com>2016-05-18 21:30:34 +0100
commit1474955143f29c61639df2a106287a36b9a93214 (patch)
tree7c258ab9334796428d94aec2f4db719ecbabb6d1 /client/main.go
parent9e5a1e1d458ebf60cf692c5f58651aa182d4518d (diff)
Support ed25519 ssh keys
Diffstat (limited to 'client/main.go')
-rw-r--r--client/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/main.go b/client/main.go
index c5f28f9..1b35d28 100644
--- a/client/main.go
+++ b/client/main.go
@@ -21,7 +21,7 @@ var (
url = flag.String("url", "http://localhost:10000/sign", "Signing URL")
keybits = flag.Int("bits", 4096, "Key size")
validity = flag.Duration("validity", time.Hour*24, "Key validity")
- keytype = flag.String("key_type", "rsa", "Type of private key to generate - rsa or ecdsa")
+ keytype = flag.String("key_type", "rsa", "Type of private key to generate - rsa, ecdsa or ed25519")
)
func installCert(a agent.Agent, cert *ssh.Certificate, key key) error {