X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/8c3cd914db62fcba242eba74eba223c1c927aaa5..HEAD:/sshrsag.c diff --git a/sshrsag.c b/sshrsag.c index f8e7651b..d754890d 100644 --- a/sshrsag.c +++ b/sshrsag.c @@ -2,30 +2,17 @@ * RSA key generation. */ -#include "ssh.h" - -#define RSA_EXPONENT 37 /* we like this prime */ - -#if 0 /* bignum diagnostic function */ -static void diagbn(char *prefix, Bignum md) { - int i, nibbles, morenibbles; - static const char hex[] = "0123456789ABCDEF"; +#include - printf("%s0x", prefix ? prefix : ""); - - nibbles = (3 + ssh1_bignum_bitcount(md))/4; if (nibbles<1) nibbles=1; - morenibbles = 4*md[0] - nibbles; - for (i=0; i> (4*(i%2))) & 0xF]); +#include "ssh.h" - if (prefix) putchar('\n'); -} -#endif +#define RSA_EXPONENT 37 /* we like this prime */ -int rsa_generate(struct RSAKey *key, struct RSAAux *aux, int bits, - progfn_t pfn, void *pfnparam) { +int rsa_generate(struct RSAKey *key, int bits, progfn_t pfn, + void *pfnparam) +{ Bignum pm1, qm1, phi_n; + unsigned pfirst, qfirst; /* * Set up the phase limits for the progress report. We do this @@ -55,14 +42,18 @@ int rsa_generate(struct RSAKey *key, struct RSAAux *aux, int bits, * time. We do this in 16-bit fixed point, so 29.34 becomes * 0x1D.57C4. */ - pfn(pfnparam, -1, -0x1D57C4/(bits/2)); - pfn(pfnparam, -2, -0x1D57C4/(bits-bits/2)); - pfn(pfnparam, -3, 5); + pfn(pfnparam, PROGFN_PHASE_EXTENT, 1, 0x10000); + pfn(pfnparam, PROGFN_EXP_PHASE, 1, -0x1D57C4 / (bits / 2)); + pfn(pfnparam, PROGFN_PHASE_EXTENT, 2, 0x10000); + pfn(pfnparam, PROGFN_EXP_PHASE, 2, -0x1D57C4 / (bits - bits / 2)); + pfn(pfnparam, PROGFN_PHASE_EXTENT, 3, 0x4000); + pfn(pfnparam, PROGFN_LIN_PHASE, 3, 5); + pfn(pfnparam, PROGFN_READY, 0, 0); /* * We don't generate e; we just use a standard one always. */ - key->exponent = bignum_from_short(RSA_EXPONENT); + key->exponent = bignum_from_long(RSA_EXPONENT); /* * Generate p and q: primes with combined length `bits', not @@ -71,16 +62,19 @@ int rsa_generate(struct RSAKey *key, struct RSAAux *aux, int bits, * general that's slightly more fiddly to arrange. By choosing * a prime e, we can simplify the criterion.) */ - aux->p = primegen(bits/2, RSA_EXPONENT, 1, 1, pfn, pfnparam); - aux->q = primegen(bits - bits/2, RSA_EXPONENT, 1, 2, pfn, pfnparam); + invent_firstbits(&pfirst, &qfirst); + key->p = primegen(bits / 2, RSA_EXPONENT, 1, NULL, + 1, pfn, pfnparam, pfirst); + key->q = primegen(bits - bits / 2, RSA_EXPONENT, 1, NULL, + 2, pfn, pfnparam, qfirst); /* * Ensure p > q, by swapping them if not. */ - if (bignum_cmp(aux->p, aux->q) < 0) { - Bignum t = aux->p; - aux->p = aux->q; - aux->q = t; + if (bignum_cmp(key->p, key->q) < 0) { + Bignum t = key->p; + key->p = key->q; + key->q = t; } /* @@ -88,21 +82,23 @@ int rsa_generate(struct RSAKey *key, struct RSAAux *aux, int bits, * the other helpful quantities: n=pq, d=e^-1 mod (p-1)(q-1), * and (q^-1 mod p). */ - pfn(pfnparam, 3, 1); - key->modulus = bigmul(aux->p, aux->q); - pfn(pfnparam, 3, 2); - pm1 = copybn(aux->p); + pfn(pfnparam, PROGFN_PROGRESS, 3, 1); + key->modulus = bigmul(key->p, key->q); + pfn(pfnparam, PROGFN_PROGRESS, 3, 2); + pm1 = copybn(key->p); decbn(pm1); - qm1 = copybn(aux->q); + qm1 = copybn(key->q); decbn(qm1); phi_n = bigmul(pm1, qm1); - pfn(pfnparam, 3, 3); + pfn(pfnparam, PROGFN_PROGRESS, 3, 3); freebn(pm1); freebn(qm1); key->private_exponent = modinv(key->exponent, phi_n); - pfn(pfnparam, 3, 4); - aux->iqmp = modinv(aux->q, aux->p); - pfn(pfnparam, 3, 5); + assert(key->private_exponent); + pfn(pfnparam, PROGFN_PROGRESS, 3, 4); + key->iqmp = modinv(key->q, key->p); + assert(key->iqmp); + pfn(pfnparam, PROGFN_PROGRESS, 3, 5); /* * Clean up temporary numbers.