diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-01-02 22:40:09 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-01-03 09:43:24 +1100 |
commit | 9039971887cccd95b209c479296f772a3a93e8e7 (patch) | |
tree | 935303f0db7914aa9011132be61e05f58a3e6c98 /ssh-keygen.1 | |
parent | 878ba4350d57e905d6bb1865d8ff31bdfe5deab4 (diff) |
upstream: ability to download FIDO2 resident keys from a token via
"ssh-keygen -K". This will save public/private keys into the current
directory.
This is handy if you move a token between hosts.
feedback & ok markus@
OpenBSD-Commit-ID: d57c1f9802f7850f00a117a1d36682a6c6d10da6
Diffstat (limited to 'ssh-keygen.1')
-rw-r--r-- | ssh-keygen.1 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ssh-keygen.1 b/ssh-keygen.1 index f0d70adec..569a46b19 100644 --- a/ssh-keygen.1 +++ b/ssh-keygen.1 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: ssh-keygen.1,v 1.186 2019/12/30 16:10:00 jmc Exp $ | 1 | .\" $OpenBSD: ssh-keygen.1,v 1.187 2020/01/02 22:40:09 djm Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | .\" Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -35,7 +35,7 @@ | |||
35 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 35 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
36 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 36 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
37 | .\" | 37 | .\" |
38 | .Dd $Mdocdate: December 30 2019 $ | 38 | .Dd $Mdocdate: January 2 2020 $ |
39 | .Dt SSH-KEYGEN 1 | 39 | .Dt SSH-KEYGEN 1 |
40 | .Os | 40 | .Os |
41 | .Sh NAME | 41 | .Sh NAME |
@@ -92,6 +92,9 @@ | |||
92 | .Fl H | 92 | .Fl H |
93 | .Op Fl f Ar known_hosts_file | 93 | .Op Fl f Ar known_hosts_file |
94 | .Nm ssh-keygen | 94 | .Nm ssh-keygen |
95 | .Fl K | ||
96 | .Op Fl w Ar provider | ||
97 | .Nm ssh-keygen | ||
95 | .Fl R Ar hostname | 98 | .Fl R Ar hostname |
96 | .Op Fl f Ar known_hosts_file | 99 | .Op Fl f Ar known_hosts_file |
97 | .Nm ssh-keygen | 100 | .Nm ssh-keygen |
@@ -363,6 +366,10 @@ commercial SSH implementations. | |||
363 | The default import format is | 366 | The default import format is |
364 | .Dq RFC4716 . | 367 | .Dq RFC4716 . |
365 | .It Fl k | 368 | .It Fl k |
369 | Download resident keys from a FIDO authenticator. | ||
370 | Public and private key files will be written to the current directory for | ||
371 | each downloaded key. | ||
372 | .It Fl k | ||
366 | Generate a KRL file. | 373 | Generate a KRL file. |
367 | In this mode, | 374 | In this mode, |
368 | .Nm | 375 | .Nm |