1 /* $OpenBSD: ssh-dss.c,v 1.25 2010/02/26 20:29:54 djm Exp $ */
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include <sys/types.h>
30 #include <openssl/bn.h>
31 #include <openssl/evp.h>
42 #define INTBLOB_LEN 20
43 #define SIGBLOB_LEN (2*INTBLOB_LEN)
46 ssh_dss_sign(const Key
*key
, u_char
**sigp
, u_int
*lenp
,
47 const u_char
*data
, u_int datalen
)
50 const EVP_MD
*evp_md
= EVP_sha1();
52 u_char digest
[EVP_MAX_MD_SIZE
], sigblob
[SIGBLOB_LEN
];
53 u_int rlen
, slen
, len
, dlen
;
57 (key
->type
!= KEY_DSA
&& key
->type
!= KEY_DSA_CERT
) ||
59 error("ssh_dss_sign: no DSA key");
62 EVP_DigestInit(&md
, evp_md
);
63 EVP_DigestUpdate(&md
, data
, datalen
);
64 EVP_DigestFinal(&md
, digest
, &dlen
);
66 sig
= DSA_do_sign(digest
, dlen
, key
->dsa
);
67 memset(digest
, 'd', sizeof(digest
));
70 error("ssh_dss_sign: sign failed");
74 rlen
= BN_num_bytes(sig
->r
);
75 slen
= BN_num_bytes(sig
->s
);
76 if (rlen
> INTBLOB_LEN
|| slen
> INTBLOB_LEN
) {
77 error("bad sig size %u %u", rlen
, slen
);
81 memset(sigblob
, 0, SIGBLOB_LEN
);
82 BN_bn2bin(sig
->r
, sigblob
+ SIGBLOB_LEN
- INTBLOB_LEN
- rlen
);
83 BN_bn2bin(sig
->s
, sigblob
+ SIGBLOB_LEN
- slen
);
86 if (datafellows
& SSH_BUG_SIGBLOB
) {
90 *sigp
= xmalloc(SIGBLOB_LEN
);
91 memcpy(*sigp
, sigblob
, SIGBLOB_LEN
);
96 buffer_put_cstring(&b
, "ssh-dss");
97 buffer_put_string(&b
, sigblob
, SIGBLOB_LEN
);
102 *sigp
= xmalloc(len
);
103 memcpy(*sigp
, buffer_ptr(&b
), len
);
110 ssh_dss_verify(const Key
*key
, const u_char
*signature
, u_int signaturelen
,
111 const u_char
*data
, u_int datalen
)
114 const EVP_MD
*evp_md
= EVP_sha1();
116 u_char digest
[EVP_MAX_MD_SIZE
], *sigblob
;
122 (key
->type
!= KEY_DSA
&& key
->type
!= KEY_DSA_CERT
) ||
124 error("ssh_dss_verify: no DSA key");
128 /* fetch signature */
129 if (datafellows
& SSH_BUG_SIGBLOB
) {
130 sigblob
= xmalloc(signaturelen
);
131 memcpy(sigblob
, signature
, signaturelen
);
137 buffer_append(&b
, signature
, signaturelen
);
138 ktype
= buffer_get_string(&b
, NULL
);
139 if (strcmp("ssh-dss", ktype
) != 0) {
140 error("ssh_dss_verify: cannot handle type %s", ktype
);
146 sigblob
= buffer_get_string(&b
, &len
);
147 rlen
= buffer_len(&b
);
150 error("ssh_dss_verify: "
151 "remaining bytes in signature %d", rlen
);
157 if (len
!= SIGBLOB_LEN
) {
158 fatal("bad sigbloblen %u != SIGBLOB_LEN", len
);
161 /* parse signature */
162 if ((sig
= DSA_SIG_new()) == NULL
)
163 fatal("ssh_dss_verify: DSA_SIG_new failed");
164 if ((sig
->r
= BN_new()) == NULL
)
165 fatal("ssh_dss_verify: BN_new failed");
166 if ((sig
->s
= BN_new()) == NULL
)
167 fatal("ssh_dss_verify: BN_new failed");
168 if ((BN_bin2bn(sigblob
, INTBLOB_LEN
, sig
->r
) == NULL
) ||
169 (BN_bin2bn(sigblob
+ INTBLOB_LEN
, INTBLOB_LEN
, sig
->s
) == NULL
))
170 fatal("ssh_dss_verify: BN_bin2bn failed");
173 memset(sigblob
, 0, len
);
177 EVP_DigestInit(&md
, evp_md
);
178 EVP_DigestUpdate(&md
, data
, datalen
);
179 EVP_DigestFinal(&md
, digest
, &dlen
);
181 ret
= DSA_do_verify(digest
, dlen
, sig
, key
->dsa
);
182 memset(digest
, 'd', sizeof(digest
));
186 debug("ssh_dss_verify: signature %s",
187 ret
== 1 ? "correct" : ret
== 0 ? "incorrect" : "error");