diff options
author | Colin Watson <cjwatson@debian.org> | 2018-04-03 08:20:28 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2018-04-03 08:20:28 +0100 |
commit | ed6ae9c1a014a08ff5db3d768f01f2e427eeb476 (patch) | |
tree | 601025e307745d351946c01ab13f419ddb6dae29 /key.c | |
parent | 62f54f20bf351468e0124f63cc2902ee40d9b0e9 (diff) | |
parent | a0349a1cc4a18967ad1dbff5389bcdf9da098814 (diff) |
Import openssh_7.7p1.orig.tar.gz
Diffstat (limited to 'key.c')
-rw-r--r-- | key.c | 17 |
1 files changed, 1 insertions, 16 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: key.c,v 1.131 2017/05/30 14:16:41 markus Exp $ */ | 1 | /* $OpenBSD: key.c,v 1.132 2017/12/18 02:25:15 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * placed in the public domain | 3 | * placed in the public domain |
4 | */ | 4 | */ |
@@ -95,21 +95,6 @@ key_sign(const Key *key, u_char **sigp, u_int *lenp, | |||
95 | return 0; | 95 | return 0; |
96 | } | 96 | } |
97 | 97 | ||
98 | int | ||
99 | key_verify(const Key *key, const u_char *signature, u_int signaturelen, | ||
100 | const u_char *data, u_int datalen) | ||
101 | { | ||
102 | int r; | ||
103 | |||
104 | if ((r = sshkey_verify(key, signature, signaturelen, | ||
105 | data, datalen, datafellows)) != 0) { | ||
106 | fatal_on_fatal_errors(r, __func__, 0); | ||
107 | error("%s: %s", __func__, ssh_err(r)); | ||
108 | return r == SSH_ERR_SIGNATURE_INVALID ? 0 : -1; | ||
109 | } | ||
110 | return 1; | ||
111 | } | ||
112 | |||
113 | Key * | 98 | Key * |
114 | key_demote(const Key *k) | 99 | key_demote(const Key *k) |
115 | { | 100 | { |