Import of old SSLeay release: SSLeay 0.9.1b (unreleased)
[openssl.git] / crypto / rsa / rsa_lib.c
1 /* crypto/rsa/rsa_lib.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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
59 #include <stdio.h>
60 #include "crypto.h"
61 #include "cryptlib.h"
62 #include "lhash.h"
63 #include "bn.h"
64 #include "rsa.h"
65
66 char *RSA_version="RSA part of SSLeay 0.9.1a 06-Jul-1998";
67
68 static RSA_METHOD *default_RSA_meth=NULL;
69 static int rsa_meth_num=0;
70 static STACK *rsa_meth=NULL;
71
72 RSA *RSA_new()
73         {
74         return(RSA_new_method(NULL));
75         }
76
77 void RSA_set_default_method(meth)
78 RSA_METHOD *meth;
79         {
80         default_RSA_meth=meth;
81         }
82
83 RSA *RSA_new_method(meth)
84 RSA_METHOD *meth;
85         {
86         RSA *ret;
87
88         if (default_RSA_meth == NULL)
89                 {
90 #ifdef RSAref
91                 default_RSA_meth=RSA_PKCS1_RSAref();
92 #else
93                 default_RSA_meth=RSA_PKCS1_SSLeay();
94 #endif
95                 }
96         ret=(RSA *)Malloc(sizeof(RSA));
97         if (ret == NULL)
98                 {
99                 RSAerr(RSA_F_RSA_NEW_METHOD,ERR_R_MALLOC_FAILURE);
100                 return(NULL);
101                 }
102
103         if (meth == NULL)
104                 ret->meth=default_RSA_meth;
105         else
106                 ret->meth=meth;
107
108         ret->pad=0;
109         ret->version=0;
110         ret->n=NULL;
111         ret->e=NULL;
112         ret->d=NULL;
113         ret->p=NULL;
114         ret->q=NULL;
115         ret->dmp1=NULL;
116         ret->dmq1=NULL;
117         ret->iqmp=NULL;
118         ret->references=1;
119         ret->method_mod_n=NULL;
120         ret->method_mod_p=NULL;
121         ret->method_mod_q=NULL;
122         ret->blinding=NULL;
123         ret->bignum_data=NULL;
124         ret->flags=ret->meth->flags;
125         if ((ret->meth->init != NULL) && !ret->meth->init(ret))
126                 {
127                 Free(ret);
128                 ret=NULL;
129                 }
130         else
131                 CRYPTO_new_ex_data(rsa_meth,(char *)ret,&ret->ex_data);
132         return(ret);
133         }
134
135 void RSA_free(r)
136 RSA *r;
137         {
138         int i;
139
140         if (r == NULL) return;
141
142         i=CRYPTO_add(&r->references,-1,CRYPTO_LOCK_RSA);
143 #ifdef REF_PRINT
144         REF_PRINT("RSA",r);
145 #endif
146         if (i > 0) return;
147 #ifdef REF_CHECK
148         if (i < 0)
149                 {
150                 fprintf(stderr,"RSA_free, bad reference count\n");
151                 abort();
152                 }
153 #endif
154
155         CRYPTO_free_ex_data(rsa_meth,(char *)r,&r->ex_data);
156
157         if (r->meth->finish != NULL)
158                 r->meth->finish(r);
159
160         if (r->n != NULL) BN_clear_free(r->n);
161         if (r->e != NULL) BN_clear_free(r->e);
162         if (r->d != NULL) BN_clear_free(r->d);
163         if (r->p != NULL) BN_clear_free(r->p);
164         if (r->q != NULL) BN_clear_free(r->q);
165         if (r->dmp1 != NULL) BN_clear_free(r->dmp1);
166         if (r->dmq1 != NULL) BN_clear_free(r->dmq1);
167         if (r->iqmp != NULL) BN_clear_free(r->iqmp);
168         if (r->blinding != NULL) BN_BLINDING_free(r->blinding);
169         if (r->bignum_data != NULL) Free_locked(r->bignum_data);
170         Free(r);
171         }
172
173 int RSA_get_ex_new_index(argl,argp,new_func,dup_func,free_func)
174 long argl;
175 char *argp;
176 int (*new_func)();
177 int (*dup_func)();
178 void (*free_func)();
179         {
180         rsa_meth_num++;
181         return(CRYPTO_get_ex_new_index(rsa_meth_num-1,
182                 &rsa_meth,argl,argp,new_func,dup_func,free_func));
183         }
184
185 int RSA_set_ex_data(r,idx,arg)
186 RSA *r;
187 int idx;
188 char *arg;
189         {
190         return(CRYPTO_set_ex_data(&r->ex_data,idx,arg));
191         }
192
193 char *RSA_get_ex_data(r,idx)
194 RSA *r;
195 int idx;
196         {
197         return(CRYPTO_get_ex_data(&r->ex_data,idx));
198         }
199
200 int RSA_size(r)
201 RSA *r;
202         {
203         return(BN_num_bytes(r->n));
204         }
205
206 int RSA_public_encrypt(flen, from, to, rsa, padding)
207 int flen;
208 unsigned char *from;
209 unsigned char *to;
210 RSA *rsa;
211 int padding;
212         {
213         return(rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding));
214         }
215
216 int RSA_private_encrypt(flen, from, to, rsa, padding)
217 int flen;
218 unsigned char *from;
219 unsigned char *to;
220 RSA *rsa;
221 int padding;
222         {
223         return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding));
224         }
225
226 int RSA_private_decrypt(flen, from, to, rsa, padding)
227 int flen;
228 unsigned char *from;
229 unsigned char *to;
230 RSA *rsa;
231 int padding;
232         {
233         return(rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding));
234         }
235
236 int RSA_public_decrypt(flen, from, to, rsa, padding)
237 int flen;
238 unsigned char *from;
239 unsigned char *to;
240 RSA *rsa;
241 int padding;
242         {
243         return(rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding));
244         }
245
246 int RSA_flags(r)
247 RSA *r;
248         {
249         return((r == NULL)?0:r->meth->flags);
250         }
251
252 void RSA_blinding_off(rsa)
253 RSA *rsa;
254         {
255         if (rsa->blinding != NULL)
256                 {
257                 BN_BLINDING_free(rsa->blinding);
258                 rsa->blinding=NULL;
259                 }
260         rsa->flags&= ~RSA_FLAG_BLINDING;
261         }
262
263 int RSA_blinding_on(rsa,p_ctx)
264 RSA *rsa;
265 BN_CTX *p_ctx;
266         {
267         BIGNUM *A,*Ai;
268         BN_CTX *ctx;
269         int ret=0;
270
271         if (p_ctx == NULL)
272                 {
273                 if ((ctx=BN_CTX_new()) == NULL) goto err;
274                 }
275         else
276                 ctx=p_ctx;
277
278         if (rsa->blinding != NULL)
279                 BN_BLINDING_free(rsa->blinding);
280
281         A= &(ctx->bn[0]);
282         ctx->tos++;
283         if (!BN_rand(A,BN_num_bits(rsa->n)-1,1,0)) goto err;
284         if ((Ai=BN_mod_inverse(NULL,A,rsa->n,ctx)) == NULL) goto err;
285
286         if (!rsa->meth->bn_mod_exp(A,A,rsa->e,rsa->n,ctx,
287                 (char *)rsa->method_mod_n)) goto err;
288         rsa->blinding=BN_BLINDING_new(A,Ai,rsa->n);
289         ctx->tos--;
290         rsa->flags|=RSA_FLAG_BLINDING;
291         BN_free(Ai);
292         ret=1;
293 err:
294         if (ctx != p_ctx) BN_CTX_free(ctx);
295         return(ret);
296         }
297
298 int RSA_memory_lock(r)
299 RSA *r;
300         {
301         int i,j,k,off;
302         char *p;
303         BIGNUM *bn,**t[6],*b;
304         BN_ULONG *ul;
305
306         if (r->d == NULL) return(1);
307         t[0]= &r->d;
308         t[1]= &r->p;
309         t[2]= &r->q;
310         t[3]= &r->dmp1;
311         t[4]= &r->dmq1;
312         t[5]= &r->iqmp;
313         k=sizeof(BIGNUM)*6;
314         off=k/sizeof(BN_ULONG)+1;
315         j=1;
316         for (i=0; i<6; i++)
317                 j+= (*t[i])->top;
318         if ((p=Malloc_locked((off+j)*sizeof(BN_ULONG))) == NULL)
319                 {
320                 RSAerr(RSA_F_MEMORY_LOCK,ERR_R_MALLOC_FAILURE);
321                 return(0);
322                 }
323         bn=(BIGNUM *)p;
324         ul=(BN_ULONG *)&(p[off]);
325         for (i=0; i<6; i++)
326                 {
327                 b= *(t[i]);
328                 *(t[i])= &(bn[i]);
329                 memcpy((char *)&(bn[i]),(char *)b,sizeof(BIGNUM));
330                 bn[i].flags=BN_FLG_STATIC_DATA;
331                 bn[i].d=ul;
332                 memcpy((char *)ul,b->d,sizeof(BN_ULONG)*b->top);
333                 ul+=b->top;
334                 BN_clear_free(b);
335                 }
336         
337         /* I should fix this so it can still be done */
338         r->flags&= ~(RSA_FLAG_CACHE_PRIVATE|RSA_FLAG_CACHE_PUBLIC);
339
340         r->bignum_data=p;
341         return(1);
342         }
343