1 /* $OpenBSD: ssh-ecdsa.c,v 1.4 2010/09/10 01:04:10 djm Exp $ */
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2010 Damien Miller. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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.
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.
29 #ifdef OPENSSL_HAS_ECC
31 #include <sys/types.h>
33 #include <openssl/bn.h>
34 #include <openssl/ec.h>
35 #include <openssl/ecdsa.h>
36 #include <openssl/evp.h>
47 ssh_ecdsa_sign(const Key
*key
, u_char
**sigp
, u_int
*lenp
,
48 const u_char
*data
, u_int datalen
)
53 u_char digest
[EVP_MAX_MD_SIZE
];
57 if (key
== NULL
|| key
->ecdsa
== NULL
||
58 (key
->type
!= KEY_ECDSA
&& key
->type
!= KEY_ECDSA_CERT
)) {
59 error("%s: no ECDSA key", __func__
);
62 evp_md
= key_ec_nid_to_evpmd(key
->ecdsa_nid
);
63 EVP_DigestInit(&md
, evp_md
);
64 EVP_DigestUpdate(&md
, data
, datalen
);
65 EVP_DigestFinal(&md
, digest
, &dlen
);
67 sig
= ECDSA_do_sign(digest
, dlen
, key
->ecdsa
);
68 memset(digest
, 'd', sizeof(digest
));
71 error("%s: sign failed", __func__
);
76 buffer_put_bignum2(&bb
, sig
->r
);
77 buffer_put_bignum2(&bb
, sig
->s
);
81 buffer_put_cstring(&b
, key_ssh_name_plain(key
));
82 buffer_put_string(&b
, buffer_ptr(&bb
), buffer_len(&bb
));
89 memcpy(*sigp
, buffer_ptr(&b
), len
);
96 ssh_ecdsa_verify(const Key
*key
, const u_char
*signature
, u_int signaturelen
,
97 const u_char
*data
, u_int datalen
)
100 const EVP_MD
*evp_md
;
102 u_char digest
[EVP_MAX_MD_SIZE
], *sigblob
;
108 if (key
== NULL
|| key
->ecdsa
== NULL
||
109 (key
->type
!= KEY_ECDSA
&& key
->type
!= KEY_ECDSA_CERT
)) {
110 error("%s: no ECDSA key", __func__
);
113 evp_md
= key_ec_nid_to_evpmd(key
->ecdsa_nid
);
115 /* fetch signature */
117 buffer_append(&b
, signature
, signaturelen
);
118 ktype
= buffer_get_string(&b
, NULL
);
119 if (strcmp(key_ssh_name_plain(key
), ktype
) != 0) {
120 error("%s: cannot handle type %s", __func__
, ktype
);
126 sigblob
= buffer_get_string(&b
, &len
);
127 rlen
= buffer_len(&b
);
130 error("%s: remaining bytes in signature %d", __func__
, rlen
);
135 /* parse signature */
136 if ((sig
= ECDSA_SIG_new()) == NULL
)
137 fatal("%s: ECDSA_SIG_new failed", __func__
);
138 if ((sig
->r
= BN_new()) == NULL
||
139 (sig
->s
= BN_new()) == NULL
)
140 fatal("%s: BN_new failed", __func__
);
143 buffer_append(&bb
, sigblob
, len
);
144 buffer_get_bignum2(&bb
, sig
->r
);
145 buffer_get_bignum2(&bb
, sig
->s
);
146 if (buffer_len(&bb
) != 0)
147 fatal("%s: remaining bytes in inner sigblob", __func__
);
150 memset(sigblob
, 0, len
);
154 EVP_DigestInit(&md
, evp_md
);
155 EVP_DigestUpdate(&md
, data
, datalen
);
156 EVP_DigestFinal(&md
, digest
, &dlen
);
158 ret
= ECDSA_do_verify(digest
, dlen
, sig
, key
->ecdsa
);
159 memset(digest
, 'd', sizeof(digest
));
163 debug("%s: signature %s", __func__
,
164 ret
== 1 ? "correct" : ret
== 0 ? "incorrect" : "error");
168 #endif /* OPENSSL_HAS_ECC */