]> andersk Git - openssh.git/blame - ssh-dss.c
- deraadt@cvs.openbsd.org 2006/03/19 18:51:18
[openssh.git] / ssh-dss.c
CommitLineData
4f8c6159 1/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
4f8c6159 12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
42f11eb2 26
27#include <openssl/bn.h>
28#include <openssl/evp.h>
4f8c6159 29
4f8c6159 30#include "xmalloc.h"
31#include "buffer.h"
32#include "bufaux.h"
33#include "compat.h"
42f11eb2 34#include "log.h"
4f8c6159 35#include "key.h"
36
37#define INTBLOB_LEN 20
38#define SIGBLOB_LEN (2*INTBLOB_LEN)
39
4f8c6159 40int
b6c7b7b7 41ssh_dss_sign(const Key *key, u_char **sigp, u_int *lenp,
42 const u_char *data, u_int datalen)
4f8c6159 43{
4f8c6159 44 DSA_SIG *sig;
714954dc 45 const EVP_MD *evp_md = EVP_sha1();
4f8c6159 46 EVP_MD_CTX md;
eb9f2fab 47 u_char digest[EVP_MAX_MD_SIZE], sigblob[SIGBLOB_LEN];
d87596b0 48 u_int rlen, slen, len, dlen;
4f8c6159 49 Buffer b;
50
51 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
fa08c86b 52 error("ssh_dss_sign: no DSA key");
4f8c6159 53 return -1;
54 }
4f8c6159 55 EVP_DigestInit(&md, evp_md);
a306f2dd 56 EVP_DigestUpdate(&md, data, datalen);
087dea86 57 EVP_DigestFinal(&md, digest, &dlen);
4f8c6159 58
42f11eb2 59 sig = DSA_do_sign(digest, dlen, key->dsa);
087dea86 60 memset(digest, 'd', sizeof(digest));
d87596b0 61
d87596b0 62 if (sig == NULL) {
63 error("ssh_dss_sign: sign failed");
64 return -1;
65 }
4f8c6159 66
67 rlen = BN_num_bytes(sig->r);
68 slen = BN_num_bytes(sig->s);
69 if (rlen > INTBLOB_LEN || slen > INTBLOB_LEN) {
d6133f43 70 error("bad sig size %u %u", rlen, slen);
4f8c6159 71 DSA_SIG_free(sig);
72 return -1;
73 }
4f8c6159 74 memset(sigblob, 0, SIGBLOB_LEN);
75 BN_bn2bin(sig->r, sigblob+ SIGBLOB_LEN - INTBLOB_LEN - rlen);
76 BN_bn2bin(sig->s, sigblob+ SIGBLOB_LEN - slen);
77 DSA_SIG_free(sig);
78
d0c832f3 79 if (datafellows & SSH_BUG_SIGBLOB) {
4f8c6159 80 if (lenp != NULL)
81 *lenp = SIGBLOB_LEN;
eb9f2fab 82 if (sigp != NULL) {
83 *sigp = xmalloc(SIGBLOB_LEN);
84 memcpy(*sigp, sigblob, SIGBLOB_LEN);
85 }
4f8c6159 86 } else {
87 /* ietf-drafts */
88 buffer_init(&b);
fa08c86b 89 buffer_put_cstring(&b, "ssh-dss");
4f8c6159 90 buffer_put_string(&b, sigblob, SIGBLOB_LEN);
91 len = buffer_len(&b);
4f8c6159 92 if (lenp != NULL)
93 *lenp = len;
eb9f2fab 94 if (sigp != NULL) {
95 *sigp = xmalloc(len);
96 memcpy(*sigp, buffer_ptr(&b), len);
97 }
98 buffer_free(&b);
4f8c6159 99 }
100 return 0;
101}
102int
b6c7b7b7 103ssh_dss_verify(const Key *key, const u_char *signature, u_int signaturelen,
104 const u_char *data, u_int datalen)
4f8c6159 105{
4f8c6159 106 DSA_SIG *sig;
714954dc 107 const EVP_MD *evp_md = EVP_sha1();
4f8c6159 108 EVP_MD_CTX md;
087dea86 109 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
1e3b8b07 110 u_int len, dlen;
d87596b0 111 int rlen, ret;
112 Buffer b;
4f8c6159 113
114 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
fa08c86b 115 error("ssh_dss_verify: no DSA key");
4f8c6159 116 return -1;
117 }
118
4f8c6159 119 /* fetch signature */
d0c832f3 120 if (datafellows & SSH_BUG_SIGBLOB) {
b6c7b7b7 121 sigblob = xmalloc(signaturelen);
122 memcpy(sigblob, signature, signaturelen);
4f8c6159 123 len = signaturelen;
124 } else {
125 /* ietf-drafts */
74fc9186 126 char *ktype;
4f8c6159 127 buffer_init(&b);
cf54363d 128 buffer_append(&b, signature, signaturelen);
4f8c6159 129 ktype = buffer_get_string(&b, NULL);
fa08c86b 130 if (strcmp("ssh-dss", ktype) != 0) {
131 error("ssh_dss_verify: cannot handle type %s", ktype);
74fc9186 132 buffer_free(&b);
abc4e9a7 133 xfree(ktype);
74fc9186 134 return -1;
135 }
abc4e9a7 136 xfree(ktype);
cf54363d 137 sigblob = buffer_get_string(&b, &len);
4f8c6159 138 rlen = buffer_len(&b);
abc4e9a7 139 buffer_free(&b);
6aacefa7 140 if (rlen != 0) {
abc4e9a7 141 error("ssh_dss_verify: "
142 "remaining bytes in signature %d", rlen);
143 xfree(sigblob);
74fc9186 144 return -1;
145 }
4f8c6159 146 }
147
148 if (len != SIGBLOB_LEN) {
d6133f43 149 fatal("bad sigbloblen %u != SIGBLOB_LEN", len);
4f8c6159 150 }
151
152 /* parse signature */
b775c6f2 153 if ((sig = DSA_SIG_new()) == NULL)
154 fatal("ssh_dss_verify: DSA_SIG_new failed");
155 if ((sig->r = BN_new()) == NULL)
156 fatal("ssh_dss_verify: BN_new failed");
157 if ((sig->s = BN_new()) == NULL)
158 fatal("ssh_dss_verify: BN_new failed");
4f8c6159 159 BN_bin2bn(sigblob, INTBLOB_LEN, sig->r);
160 BN_bin2bn(sigblob+ INTBLOB_LEN, INTBLOB_LEN, sig->s);
d0c832f3 161
b6c7b7b7 162 /* clean up */
163 memset(sigblob, 0, len);
164 xfree(sigblob);
2b87da3b 165
a306f2dd 166 /* sha1 the data */
4f8c6159 167 EVP_DigestInit(&md, evp_md);
a306f2dd 168 EVP_DigestUpdate(&md, data, datalen);
087dea86 169 EVP_DigestFinal(&md, digest, &dlen);
4f8c6159 170
fa08c86b 171 ret = DSA_do_verify(digest, dlen, sig, key->dsa);
087dea86 172 memset(digest, 'd', sizeof(digest));
4f8c6159 173
4f8c6159 174 DSA_SIG_free(sig);
175
d87596b0 176 debug("ssh_dss_verify: signature %s",
177 ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
4f8c6159 178 return ret;
179}
This page took 1.911299 seconds and 5 git commands to generate.