summaryrefslogtreecommitdiff
path: root/ssh-sk.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-12-13 19:09:10 +0000
committerDamien Miller <djm@mindrot.org>2019-12-14 07:17:44 +1100
commitb52ec0ba3983859514aa7b57d6100fa9759fe696 (patch)
tree262c9a2ebc4e6972594f45ea75fc15e8ae3bfefb /ssh-sk.c
parentc33d46868c3d88e04a92610cdb429094aeeb5847 (diff)
upstream: use ssh-sk-helper for all security key signing operations
This extracts and refactors the client interface for ssh-sk-helper from ssh-agent and generalises it for use by the other programs. This means that most OpenSSH tools no longer need to link against libfido2 or directly interact with /dev/uhid* requested by, feedback and ok markus@ OpenBSD-Commit-ID: 1abcd3aea9a7460eccfbf8ca154cdfa62f1dc93f
Diffstat (limited to 'ssh-sk.c')
-rw-r--r--ssh-sk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-sk.c b/ssh-sk.c
index 7c63536e2..9e5637353 100644
--- a/ssh-sk.c
+++ b/ssh-sk.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-sk.c,v 1.17 2019/11/27 22:32:11 djm Exp $ */ 1/* $OpenBSD: ssh-sk.c,v 1.18 2019/12/13 19:09:10 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Google LLC 3 * Copyright (c) 2019 Google LLC
4 * 4 *
@@ -464,7 +464,7 @@ sshsk_ed25519_sig(struct sk_sign_response *resp, struct sshbuf *sig)
464} 464}
465 465
466int 466int
467sshsk_sign(const char *provider_path, const struct sshkey *key, 467sshsk_sign(const char *provider_path, struct sshkey *key,
468 u_char **sigp, size_t *lenp, const u_char *data, size_t datalen, 468 u_char **sigp, size_t *lenp, const u_char *data, size_t datalen,
469 u_int compat) 469 u_int compat)
470{ 470{