]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/dsa/dsa_sign.c
Change functions to ANSI C.
[thirdparty/openssl.git] / crypto / dsa / dsa_sign.c
CommitLineData
d02b48c6 1/* crypto/dsa/dsa_sign.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
4b8f2ce6 59/* Original version from Steven Schoch <schoch@sheba.arc.nasa.gov> */
d02b48c6
RE
60
61#include <stdio.h>
62#include "cryptlib.h"
63#include "bn.h"
64#include "dsa.h"
65#include "rand.h"
66#include "asn1.h"
67
6b691a5c 68DSA_SIG * DSA_do_sign(unsigned char *dgst, int dlen, DSA *dsa)
d02b48c6 69 {
a8da8918 70 BIGNUM *kinv=NULL,*r=NULL,*s=NULL;
dfeab068 71 BIGNUM m;
a8da8918 72 BIGNUM xr;
d02b48c6 73 BN_CTX *ctx=NULL;
a8da8918
UM
74 int i,reason=ERR_R_BN_LIB;
75 DSA_SIG *ret=NULL;
d02b48c6 76
dfeab068
RE
77 BN_init(&m);
78 BN_init(&xr);
a8da8918
UM
79 s=BN_new();
80 if (s == NULL) goto err;
dfeab068 81
d02b48c6
RE
82 i=BN_num_bytes(dsa->q); /* should be 20 */
83 if ((dlen > i) || (dlen > 50))
84 {
85 reason=DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE;
86 goto err;
87 }
88
89 ctx=BN_CTX_new();
90 if (ctx == NULL) goto err;
91
92 if ((dsa->kinv == NULL) || (dsa->r == NULL))
93 {
94 if (!DSA_sign_setup(dsa,ctx,&kinv,&r)) goto err;
95 }
96 else
97 {
98 kinv=dsa->kinv;
99 dsa->kinv=NULL;
100 r=dsa->r;
101 dsa->r=NULL;
102 }
103
dfeab068 104 if (BN_bin2bn(dgst,dlen,&m) == NULL) goto err;
d02b48c6
RE
105
106 /* Compute s = inv(k) (m + xr) mod q */
dfeab068 107 if (!BN_mod_mul(&xr,dsa->priv_key,r,dsa->q,ctx)) goto err;/* s = xr */
a8da8918
UM
108 if (!BN_add(s, &xr, &m)) goto err; /* s = m + xr */
109 if (BN_cmp(s,dsa->q) > 0)
110 BN_sub(s,s,dsa->q);
111 if (!BN_mod_mul(s,s,kinv,dsa->q,ctx)) goto err;
112
113 ret=DSA_SIG_new();
114 if (ret == NULL) goto err;
115 ret->r = r;
116 ret->s = s;
117
d02b48c6 118err:
a8da8918
UM
119 if (!ret)
120 {
121 DSAerr(DSA_F_DSA_DO_SIGN,reason);
122 BN_free(r);
123 BN_free(s);
124 }
d02b48c6 125 if (ctx != NULL) BN_CTX_free(ctx);
dfeab068
RE
126 BN_clear_free(&m);
127 BN_clear_free(&xr);
d02b48c6
RE
128 return(ret);
129 }
130
a8da8918
UM
131/* data has already been hashed (probably with SHA or SHA-1). */
132
6b691a5c
UM
133/* unsigned char *sig: out */
134/* unsigned int *siglen: out */
135int DSA_sign(int type, unsigned char *dgst, int dlen, unsigned char *sig,
136 unsigned int *siglen, DSA *dsa)
a8da8918
UM
137 {
138 DSA_SIG *s;
139 s=DSA_do_sign(dgst,dlen,dsa);
140 if (s == NULL)
141 {
142 *siglen=0;
143 return(0);
144 }
145 *siglen=i2d_DSA_SIG(s,&sig);
146 DSA_SIG_free(s);
147 return(1);
148 }
149
6b691a5c 150int DSA_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp)
d02b48c6
RE
151 {
152 BN_CTX *ctx;
dfeab068 153 BIGNUM k,*kinv=NULL,*r=NULL;
d02b48c6
RE
154 int ret=0;
155
156 if (ctx_in == NULL)
157 {
158 if ((ctx=BN_CTX_new()) == NULL) goto err;
159 }
160 else
161 ctx=ctx_in;
162
dfeab068
RE
163 BN_init(&k);
164 if ((r=BN_new()) == NULL) goto err;
d02b48c6
RE
165 kinv=NULL;
166
d02b48c6
RE
167 /* Get random k */
168 for (;;)
169 {
dfeab068
RE
170 if (!BN_rand(&k, BN_num_bits(dsa->q), 1, 0)) goto err;
171 if (BN_cmp(&k,dsa->q) >= 0)
172 BN_sub(&k,&k,dsa->q);
173 if (!BN_is_zero(&k)) break;
174 }
175
176 if ((dsa->method_mont_p == NULL) && (dsa->flags & DSA_FLAG_CACHE_MONT_P))
177 {
178 if ((dsa->method_mont_p=(char *)BN_MONT_CTX_new()) != NULL)
179 if (!BN_MONT_CTX_set((BN_MONT_CTX *)dsa->method_mont_p,
180 dsa->p,ctx)) goto err;
d02b48c6
RE
181 }
182
183 /* Compute r = (g^k mod p) mod q */
dfeab068
RE
184 if (!BN_mod_exp_mont(r,dsa->g,&k,dsa->p,ctx,
185 (BN_MONT_CTX *)dsa->method_mont_p)) goto err;
d02b48c6
RE
186 if (!BN_mod(r,r,dsa->q,ctx)) goto err;
187
188 /* Compute part of 's = inv(k) (m + xr) mod q' */
dfeab068 189 if ((kinv=BN_mod_inverse(NULL,&k,dsa->q,ctx)) == NULL) goto err;
d02b48c6
RE
190
191 if (*kinvp != NULL) BN_clear_free(*kinvp);
192 *kinvp=kinv;
193 kinv=NULL;
194 if (*rp != NULL) BN_clear_free(*rp);
195 *rp=r;
196 ret=1;
197err:
198 if (!ret)
199 {
200 DSAerr(DSA_F_DSA_SIGN_SETUP,ERR_R_BN_LIB);
201 if (kinv != NULL) BN_clear_free(kinv);
202 if (r != NULL) BN_clear_free(r);
203 }
204 if (ctx_in == NULL) BN_CTX_free(ctx);
d02b48c6 205 if (kinv != NULL) BN_clear_free(kinv);
dfeab068 206 BN_clear_free(&k);
d02b48c6
RE
207 return(ret);
208 }
209