pub/rsa-recover.c: Gather cleanup to the end of the function.
[catacomb] / pub / rsa-recover.c
CommitLineData
01898d8e 1/* -*-c-*-
2 *
01898d8e 3 * Recover RSA parameters
4 *
5 * (c) 1999 Straylight/Edgeware
6 */
7
45c0fd36 8/*----- Licensing notice --------------------------------------------------*
01898d8e 9 *
10 * This file is part of Catacomb.
11 *
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
45c0fd36 16 *
01898d8e 17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
45c0fd36 21 *
01898d8e 22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
01898d8e 28/*----- Header files ------------------------------------------------------*/
29
30#include "mp.h"
31#include "mpmont.h"
32#include "rsa.h"
33
34/*----- Main code ---------------------------------------------------------*/
35
36/* --- @rsa_recover@ --- *
37 *
b82ec4e8 38 * Arguments: @rsa_priv *rp@ = pointer to parameter block
01898d8e 39 *
40 * Returns: Zero if all went well, nonzero if the parameters make no
41 * sense.
42 *
43 * Use: Derives the full set of RSA parameters given a minimal set.
395da108
MW
44 *
45 * On failure, the parameter block might be partially filled in,
46 * but the @rsa_privfree@ function will be able to free it
47 * successfully.
01898d8e 48 */
49
b82ec4e8 50int rsa_recover(rsa_priv *rp)
01898d8e 51{
ba6c1388 52 int rc = -1;
f2d45696
MW
53 int i;
54 size_t s;
55 mpmont mm;
56 mp a; mpw aw;
ba6c1388 57 mp *g = MP_NEW, *r = MP_NEW, *t = MP_NEW, *zt;
f2d45696
MW
58 mp *m1 = MP_NEW, *z = MP_NEW, *zz = MP_NEW;
59 mp *phi = MP_NEW, *p1 = MP_NEW, *q1 = MP_NEW;
60
ba6c1388
MW
61 mm.r = 0;
62
01898d8e 63 /* --- If there is no modulus, calculate it --- */
64
65 if (!rp->n) {
ba6c1388 66 if (!rp->p || !rp->q) goto out;
01898d8e 67 rp->n = mp_mul(MP_NEW, rp->p, rp->q);
68 }
69
70 /* --- If there are no factors, compute them --- */
71
72 else if (!rp->p || !rp->q) {
73
74 /* --- If one is missing, use simple division to recover the other --- */
75
76 if (rp->p || rp->q) {
ba6c1388
MW
77 if (rp->p) mp_div(&rp->q, &r, rp->n, rp->p);
78 else mp_div(&rp->p, &r, rp->n, rp->q);
79 if (!MP_EQ(r, MP_ZERO)) goto out;
01898d8e 80 }
81
82 /* --- Otherwise use the public and private moduli --- */
83
f3099c16 84 else if (!rp->e || !rp->d)
ba6c1388 85 goto out;
f3099c16 86 else {
01898d8e 87
88 /* --- Work out the appropriate exponent --- *
89 *
90 * I need to compute %$s$% and %$t$% such that %$2^s t = e d - 1$%, and
91 * %$t$% is odd.
92 */
93
f2d45696 94 t = mp_mul(t, rp->e, rp->d);
01898d8e 95 t = mp_sub(t, t, MP_ONE);
31cb4e2e 96 t = mp_odd(t, t, &s);
01898d8e 97
98 /* --- Set up for the exponentiation --- */
99
100 mpmont_create(&mm, rp->n);
f2d45696 101 m1 = mp_sub(m1, rp->n, mm.r);
01898d8e 102
103 /* --- Now for the main loop --- *
104 *
105 * Choose candidate integers and attempt to factor the modulus.
106 */
107
108 mp_build(&a, &aw, &aw + 1);
109 i = 0;
e81d8d47
MW
110
111 again:
112
113 /* --- Choose a random %$a$% and calculate %$z = a^t \bmod n$% --- *
114 *
115 * If %$z \equiv 1$% or %$z \equiv -1 \pmod n$% then this iteration
116 * is a failure.
117 */
118
119 aw = primetab[i++];
120 z = mpmont_mul(&mm, z, &a, mm.r2);
121 z = mpmont_expr(&mm, z, z, t);
ba6c1388 122 if (MP_EQ(z, mm.r) || MP_EQ(z, m1)) goto again;
e81d8d47
MW
123
124 /* --- Now square until something interesting happens --- *
125 *
126 * Compute %$z^{2i} \bmod n$%. Eventually, I'll either get %$-1$% or
127 * %$1$%. If the former, the number is uninteresting, and I need to
128 * restart. If the latter, the previous number minus 1 has a common
129 * factor with %$n$%.
130 */
131
01898d8e 132 for (;;) {
e81d8d47
MW
133 zz = mp_sqr(zz, z);
134 zz = mpmont_reduce(&mm, zz, zz);
ba6c1388
MW
135 if (MP_EQ(zz, mm.r)) goto done;
136 else if (MP_EQ(zz, m1)) goto again;
137 zt = z; z = zz; zz = zt;
01898d8e 138 }
139
140 /* --- Do the factoring --- *
141 *
142 * Here's how it actually works. I've found an interesting square
143 * root of %$1 \pmod n$%. Any square root of 1 must be congruent to
144 * %$\pm 1$% modulo both %$p$% and %$q$%. Both congruent to %$1$% is
145 * boring, as is both congruent to %$-1$%. Subtracting one from the
146 * result makes it congruent to %$0$% modulo %$p$% or %$q$% (and
147 * nobody cares which), and hence can be extracted by a GCD
148 * operation.
149 */
150
151 done:
152 z = mpmont_reduce(&mm, z, z);
153 z = mp_sub(z, z, MP_ONE);
01898d8e 154 mp_gcd(&rp->p, 0, 0, rp->n, z);
01898d8e 155 mp_div(&rp->q, 0, rp->n, rp->p);
ba6c1388
MW
156 if (MP_CMP(rp->p, <, rp->q))
157 { zt = rp->p; rp->p = rp->q; rp->q = zt; }
01898d8e 158 }
159 }
160
161 /* --- If %$e$% or %$d$% is missing, recalculate it --- */
162
163 if (!rp->e || !rp->d) {
01898d8e 164
165 /* --- Compute %$\varphi(n)$% --- */
166
f2d45696 167 phi = mp_sub(phi, rp->n, rp->p);
01898d8e 168 phi = mp_sub(phi, phi, rp->q);
169 phi = mp_add(phi, phi, MP_ONE);
f2d45696
MW
170 p1 = mp_sub(p1, rp->p, MP_ONE);
171 q1 = mp_sub(q1, rp->q, MP_ONE);
f3099c16 172 mp_gcd(&g, 0, 0, p1, q1);
173 mp_div(&phi, 0, phi, g);
01898d8e 174
175 /* --- Recover the other exponent --- */
176
ba6c1388
MW
177 if (rp->e) mp_gcd(&g, 0, &rp->d, phi, rp->e);
178 else if (rp->d) mp_gcd(&g, 0, &rp->e, phi, rp->d);
179 else goto out;
180 if (!MP_EQ(g, MP_ONE)) goto out;
01898d8e 181 }
182
183 /* --- Compute %$q^{-1} \bmod p$% --- */
184
ba6c1388
MW
185 if (!rp->q_inv) {
186 mp_gcd(&g, 0, &rp->q_inv, rp->p, rp->q);
187 if (!MP_EQ(g, MP_ONE)) goto out;
188 }
01898d8e 189
190 /* --- Compute %$d \bmod (p - 1)$% and %$d \bmod (q - 1)$% --- */
191
192 if (!rp->dp) {
f2d45696 193 p1 = mp_sub(p1, rp->p, MP_ONE);
01898d8e 194 mp_div(0, &rp->dp, rp->d, p1);
01898d8e 195 }
196 if (!rp->dq) {
f2d45696 197 q1 = mp_sub(q1, rp->q, MP_ONE);
01898d8e 198 mp_div(0, &rp->dq, rp->d, q1);
01898d8e 199 }
200
201 /* --- Done --- */
202
ba6c1388
MW
203 rc = 0;
204out:
205 mp_drop(g); mp_drop(r); mp_drop(t);
206 mp_drop(m1); mp_drop(z); mp_drop(zz);
207 mp_drop(phi); mp_drop(p1); mp_drop(q1);
208 if (mm.r) mpmont_destroy(&mm);
209 return (rc);
01898d8e 210}
211
212/*----- That's all, folks -------------------------------------------------*/