blob: 10ad9da608f3048c901479ab0f79f0cd189c63db [file] [log] [blame]
Damien Millerb3051d02014-01-10 10:58:53 +11001/* $OpenBSD: ssh-ecdsa.c,v 1.8 2014/01/09 23:20:00 djm Exp $ */
Damien Millereb8b60e2010-08-31 22:41:14 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2010 Damien Miller. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
Damien Millerc79ff072010-08-31 22:50:48 +100027#include "includes.h"
28
Damien Miller6af914a2010-09-10 11:39:26 +100029#ifdef OPENSSL_HAS_ECC
30
Damien Millereb8b60e2010-08-31 22:41:14 +100031#include <sys/types.h>
32
33#include <openssl/bn.h>
34#include <openssl/ec.h>
35#include <openssl/ecdsa.h>
36#include <openssl/evp.h>
37
38#include <string.h>
39
40#include "xmalloc.h"
41#include "buffer.h"
42#include "compat.h"
43#include "log.h"
44#include "key.h"
Damien Millerb3051d02014-01-10 10:58:53 +110045#include "digest.h"
Damien Millereb8b60e2010-08-31 22:41:14 +100046
47int
48ssh_ecdsa_sign(const Key *key, u_char **sigp, u_int *lenp,
49 const u_char *data, u_int datalen)
50{
51 ECDSA_SIG *sig;
Damien Millerb3051d02014-01-10 10:58:53 +110052 int hash_alg;
53 u_char digest[SSH_DIGEST_MAX_LENGTH];
Damien Millereb8b60e2010-08-31 22:41:14 +100054 u_int len, dlen;
55 Buffer b, bb;
56
Damien Miller3e192952013-12-29 17:47:50 +110057 if (key == NULL || key_type_plain(key->type) != KEY_ECDSA ||
58 key->ecdsa == NULL) {
Damien Millereb8b60e2010-08-31 22:41:14 +100059 error("%s: no ECDSA key", __func__);
60 return -1;
61 }
Damien Miller3e192952013-12-29 17:47:50 +110062
Damien Millerb3051d02014-01-10 10:58:53 +110063 hash_alg = key_ec_nid_to_hash_alg(key->ecdsa_nid);
64 if ((dlen = ssh_digest_bytes(hash_alg)) == 0) {
65 error("%s: bad hash algorithm %d", __func__, hash_alg);
66 return -1;
67 }
68 if (ssh_digest_memory(hash_alg, data, datalen,
69 digest, sizeof(digest)) != 0) {
70 error("%s: digest_memory failed", __func__);
71 return -1;
72 }
Damien Millereb8b60e2010-08-31 22:41:14 +100073
74 sig = ECDSA_do_sign(digest, dlen, key->ecdsa);
75 memset(digest, 'd', sizeof(digest));
76
77 if (sig == NULL) {
78 error("%s: sign failed", __func__);
79 return -1;
80 }
81
82 buffer_init(&bb);
83 buffer_put_bignum2(&bb, sig->r);
84 buffer_put_bignum2(&bb, sig->s);
85 ECDSA_SIG_free(sig);
86
87 buffer_init(&b);
88 buffer_put_cstring(&b, key_ssh_name_plain(key));
89 buffer_put_string(&b, buffer_ptr(&bb), buffer_len(&bb));
90 buffer_free(&bb);
91 len = buffer_len(&b);
92 if (lenp != NULL)
93 *lenp = len;
94 if (sigp != NULL) {
95 *sigp = xmalloc(len);
96 memcpy(*sigp, buffer_ptr(&b), len);
97 }
98 buffer_free(&b);
99
100 return 0;
101}
102int
103ssh_ecdsa_verify(const Key *key, const u_char *signature, u_int signaturelen,
104 const u_char *data, u_int datalen)
105{
106 ECDSA_SIG *sig;
Damien Millerb3051d02014-01-10 10:58:53 +1100107 int hash_alg;
108 u_char digest[SSH_DIGEST_MAX_LENGTH], *sigblob;
Damien Millereb8b60e2010-08-31 22:41:14 +1000109 u_int len, dlen;
110 int rlen, ret;
111 Buffer b, bb;
Damien Miller041ab7c2010-09-10 11:23:34 +1000112 char *ktype;
Damien Millereb8b60e2010-08-31 22:41:14 +1000113
Damien Miller3e192952013-12-29 17:47:50 +1100114 if (key == NULL || key_type_plain(key->type) != KEY_ECDSA ||
115 key->ecdsa == NULL) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000116 error("%s: no ECDSA key", __func__);
117 return -1;
118 }
Damien Miller3e192952013-12-29 17:47:50 +1100119
Damien Millereb8b60e2010-08-31 22:41:14 +1000120 /* fetch signature */
Damien Millereb8b60e2010-08-31 22:41:14 +1000121 buffer_init(&b);
122 buffer_append(&b, signature, signaturelen);
123 ktype = buffer_get_string(&b, NULL);
124 if (strcmp(key_ssh_name_plain(key), ktype) != 0) {
125 error("%s: cannot handle type %s", __func__, ktype);
126 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000127 free(ktype);
Damien Millereb8b60e2010-08-31 22:41:14 +1000128 return -1;
129 }
Darren Tuckera627d422013-06-02 07:31:17 +1000130 free(ktype);
Damien Millereb8b60e2010-08-31 22:41:14 +1000131 sigblob = buffer_get_string(&b, &len);
132 rlen = buffer_len(&b);
133 buffer_free(&b);
134 if (rlen != 0) {
135 error("%s: remaining bytes in signature %d", __func__, rlen);
Darren Tuckera627d422013-06-02 07:31:17 +1000136 free(sigblob);
Damien Millereb8b60e2010-08-31 22:41:14 +1000137 return -1;
138 }
139
140 /* parse signature */
141 if ((sig = ECDSA_SIG_new()) == NULL)
142 fatal("%s: ECDSA_SIG_new failed", __func__);
143 if ((sig->r = BN_new()) == NULL ||
144 (sig->s = BN_new()) == NULL)
145 fatal("%s: BN_new failed", __func__);
146
147 buffer_init(&bb);
148 buffer_append(&bb, sigblob, len);
149 buffer_get_bignum2(&bb, sig->r);
150 buffer_get_bignum2(&bb, sig->s);
151 if (buffer_len(&bb) != 0)
152 fatal("%s: remaining bytes in inner sigblob", __func__);
Damien Miller83ba8e62012-02-11 08:17:27 +1100153 buffer_free(&bb);
Damien Millereb8b60e2010-08-31 22:41:14 +1000154
155 /* clean up */
156 memset(sigblob, 0, len);
Darren Tuckera627d422013-06-02 07:31:17 +1000157 free(sigblob);
Damien Millereb8b60e2010-08-31 22:41:14 +1000158
159 /* hash the data */
Damien Millerb3051d02014-01-10 10:58:53 +1100160 hash_alg = key_ec_nid_to_hash_alg(key->ecdsa_nid);
161 if ((dlen = ssh_digest_bytes(hash_alg)) == 0) {
162 error("%s: bad hash algorithm %d", __func__, hash_alg);
163 return -1;
164 }
165 if (ssh_digest_memory(hash_alg, data, datalen,
166 digest, sizeof(digest)) != 0) {
167 error("%s: digest_memory failed", __func__);
168 return -1;
169 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000170
171 ret = ECDSA_do_verify(digest, dlen, sig, key->ecdsa);
172 memset(digest, 'd', sizeof(digest));
173
174 ECDSA_SIG_free(sig);
175
176 debug("%s: signature %s", __func__,
177 ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
178 return ret;
179}
Damien Miller6af914a2010-09-10 11:39:26 +1000180
181#endif /* OPENSSL_HAS_ECC */