diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-08-27 01:06:18 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-08-27 11:28:36 +1000 |
commit | 9b8ad93824c682ce841f53f3b5762cef4e7cc4dc (patch) | |
tree | d4523956d4623b19bf5904d1b92afeb2307f69d3 /ssh-agent.c | |
parent | 1196d7f49d4fbc90f37e550de3056561613b0960 (diff) |
upstream: support for user-verified FIDO keys
FIDO2 supports a notion of "user verification" where the user is
required to demonstrate their identity to the token before particular
operations (e.g. signing). Typically this is done by authenticating
themselves using a PIN that has been set on the token.
This adds support for generating and using user verified keys where
the verification happens via PIN (other options might be added in the
future, but none are in common use now). Practically, this adds
another key generation option "verify-required" that yields a key that
requires a PIN before each authentication.
feedback markus@ and Pedro Martelletto; ok markus@
OpenBSD-Commit-ID: 57fd461e4366f87c47502c5614ec08573e6d6a15
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 5f7ac8b91..d24a63089 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-agent.c,v 1.262 2020/07/05 23:59:45 djm Exp $ */ | 1 | /* $OpenBSD: ssh-agent.c,v 1.263 2020/08/27 01:06:18 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 |
@@ -407,9 +407,10 @@ process_sign_request2(SocketEntry *e) | |||
407 | sshkey_type(id->key), fp); | 407 | sshkey_type(id->key), fp); |
408 | } | 408 | } |
409 | } | 409 | } |
410 | /* XXX support PIN required FIDO keys */ | ||
410 | if ((r = sshkey_sign(id->key, &signature, &slen, | 411 | if ((r = sshkey_sign(id->key, &signature, &slen, |
411 | data, dlen, agent_decode_alg(key, flags), | 412 | data, dlen, agent_decode_alg(key, flags), |
412 | id->sk_provider, compat)) != 0) { | 413 | id->sk_provider, NULL, compat)) != 0) { |
413 | error("%s: sshkey_sign: %s", __func__, ssh_err(r)); | 414 | error("%s: sshkey_sign: %s", __func__, ssh_err(r)); |
414 | goto send; | 415 | goto send; |
415 | } | 416 | } |