1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* RSA implementation just sufficient for ssh client-side
|
|
|
|
* initialisation step
|
1999-07-06 23:38:54 +04:00
|
|
|
*
|
|
|
|
* Rewritten for more speed by Joris van Rantwijk, Jun 1999.
|
1999-01-08 16:02:13 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2001-03-03 14:54:34 +03:00
|
|
|
#include <assert.h>
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-05 18:28:17 +04:00
|
|
|
#include "ssh.h"
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-26 18:26:21 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
int makekey(unsigned char *data, struct RSAKey *result,
|
2001-05-06 18:35:20 +04:00
|
|
|
unsigned char **keystr, int order)
|
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
unsigned char *p = data;
|
2000-09-07 20:33:49 +04:00
|
|
|
int i;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-25 14:14:53 +04:00
|
|
|
if (result) {
|
2001-05-06 18:35:20 +04:00
|
|
|
result->bits = 0;
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
result->bits = (result->bits << 8) + *p++;
|
2000-09-25 14:14:53 +04:00
|
|
|
} else
|
2001-05-06 18:35:20 +04:00
|
|
|
p += 4;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-07 20:33:49 +04:00
|
|
|
/*
|
|
|
|
* order=0 means exponent then modulus (the keys sent by the
|
|
|
|
* server). order=1 means modulus then exponent (the keys
|
|
|
|
* stored in a keyfile).
|
|
|
|
*/
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-07 20:33:49 +04:00
|
|
|
if (order == 0)
|
2001-05-06 18:35:20 +04:00
|
|
|
p += ssh1_read_bignum(p, result ? &result->exponent : NULL);
|
2000-09-25 14:14:53 +04:00
|
|
|
if (result)
|
2001-05-06 18:35:20 +04:00
|
|
|
result->bytes = (((p[0] << 8) + p[1]) + 7) / 8;
|
|
|
|
if (keystr)
|
|
|
|
*keystr = p + 2;
|
2000-09-25 14:14:53 +04:00
|
|
|
p += ssh1_read_bignum(p, result ? &result->modulus : NULL);
|
2000-09-07 20:33:49 +04:00
|
|
|
if (order == 1)
|
2001-05-06 18:35:20 +04:00
|
|
|
p += ssh1_read_bignum(p, result ? &result->exponent : NULL);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
return p - data;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
int makeprivate(unsigned char *data, struct RSAKey *result)
|
|
|
|
{
|
2000-09-07 20:33:49 +04:00
|
|
|
return ssh1_read_bignum(data, &result->private_exponent);
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
void rsaencrypt(unsigned char *data, int length, struct RSAKey *key)
|
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
Bignum b1, b2;
|
2001-03-01 20:41:26 +03:00
|
|
|
int i;
|
1999-01-08 16:02:13 +03:00
|
|
|
unsigned char *p;
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
memmove(data + key->bytes - length, data, length);
|
1999-01-08 16:02:13 +03:00
|
|
|
data[0] = 0;
|
|
|
|
data[1] = 2;
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = 2; i < key->bytes - length - 1; i++) {
|
1999-01-08 16:02:13 +03:00
|
|
|
do {
|
|
|
|
data[i] = random_byte();
|
|
|
|
} while (data[i] == 0);
|
|
|
|
}
|
2001-05-06 18:35:20 +04:00
|
|
|
data[key->bytes - length - 1] = 0;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2001-03-01 20:41:26 +03:00
|
|
|
b1 = bignum_from_bytes(data, key->bytes);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-10-23 20:11:31 +04:00
|
|
|
b2 = modpow(b1, key->exponent, key->modulus);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
p = data;
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = key->bytes; i--;) {
|
|
|
|
*p++ = bignum_byte(b2, i);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
freebn(b1);
|
|
|
|
freebn(b2);
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
Bignum rsadecrypt(Bignum input, struct RSAKey *key)
|
|
|
|
{
|
2000-09-07 20:33:49 +04:00
|
|
|
Bignum ret;
|
2000-10-23 20:11:31 +04:00
|
|
|
ret = modpow(input, key->private_exponent, key->modulus);
|
2000-09-07 20:33:49 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
int rsastr_len(struct RSAKey *key)
|
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
Bignum md, ex;
|
2001-03-01 20:41:26 +03:00
|
|
|
int mdlen, exlen;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
md = key->modulus;
|
|
|
|
ex = key->exponent;
|
2001-05-06 18:35:20 +04:00
|
|
|
mdlen = (bignum_bitcount(md) + 15) / 16;
|
|
|
|
exlen = (bignum_bitcount(ex) + 15) / 16;
|
|
|
|
return 4 * (mdlen + exlen) + 20;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
void rsastr_fmt(char *str, struct RSAKey *key)
|
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
Bignum md, ex;
|
2000-09-27 19:21:04 +04:00
|
|
|
int len = 0, i, nibbles;
|
|
|
|
static const char hex[] = "0123456789abcdef";
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
md = key->modulus;
|
|
|
|
ex = key->exponent;
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
len += sprintf(str + len, "0x");
|
2000-09-27 19:21:04 +04:00
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
nibbles = (3 + bignum_bitcount(ex)) / 4;
|
|
|
|
if (nibbles < 1)
|
|
|
|
nibbles = 1;
|
|
|
|
for (i = nibbles; i--;)
|
|
|
|
str[len++] = hex[(bignum_byte(ex, i / 2) >> (4 * (i % 2))) & 0xF];
|
2000-09-27 19:21:04 +04:00
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
len += sprintf(str + len, ",0x");
|
2000-09-27 19:21:04 +04:00
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
nibbles = (3 + bignum_bitcount(md)) / 4;
|
|
|
|
if (nibbles < 1)
|
|
|
|
nibbles = 1;
|
|
|
|
for (i = nibbles; i--;)
|
|
|
|
str[len++] = hex[(bignum_byte(md, i / 2) >> (4 * (i % 2))) & 0xF];
|
2000-09-27 19:21:04 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
str[len] = '\0';
|
|
|
|
}
|
|
|
|
|
2000-09-26 18:26:21 +04:00
|
|
|
/*
|
|
|
|
* Generate a fingerprint string for the key. Compatible with the
|
|
|
|
* OpenSSH fingerprint code.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
void rsa_fingerprint(char *str, int len, struct RSAKey *key)
|
|
|
|
{
|
2000-09-26 18:26:21 +04:00
|
|
|
struct MD5Context md5c;
|
|
|
|
unsigned char digest[16];
|
2001-05-06 18:35:20 +04:00
|
|
|
char buffer[16 * 3 + 40];
|
2000-09-26 18:26:21 +04:00
|
|
|
int numlen, slen, i;
|
|
|
|
|
|
|
|
MD5Init(&md5c);
|
|
|
|
numlen = ssh1_bignum_length(key->modulus) - 2;
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = numlen; i--;) {
|
|
|
|
unsigned char c = bignum_byte(key->modulus, i);
|
|
|
|
MD5Update(&md5c, &c, 1);
|
2000-09-26 18:26:21 +04:00
|
|
|
}
|
|
|
|
numlen = ssh1_bignum_length(key->exponent) - 2;
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = numlen; i--;) {
|
|
|
|
unsigned char c = bignum_byte(key->exponent, i);
|
|
|
|
MD5Update(&md5c, &c, 1);
|
2000-09-26 18:26:21 +04:00
|
|
|
}
|
|
|
|
MD5Final(digest, &md5c);
|
|
|
|
|
2001-04-16 15:16:58 +04:00
|
|
|
sprintf(buffer, "%d ", bignum_bitcount(key->modulus));
|
2000-09-26 18:26:21 +04:00
|
|
|
for (i = 0; i < 16; i++)
|
2001-05-06 18:35:20 +04:00
|
|
|
sprintf(buffer + strlen(buffer), "%s%02x", i ? ":" : "",
|
|
|
|
digest[i]);
|
|
|
|
strncpy(str, buffer, len);
|
|
|
|
str[len - 1] = '\0';
|
2000-09-26 18:26:21 +04:00
|
|
|
slen = strlen(str);
|
2001-05-06 18:35:20 +04:00
|
|
|
if (key->comment && slen < len - 1) {
|
|
|
|
str[slen] = ' ';
|
|
|
|
strncpy(str + slen + 1, key->comment, len - slen - 1);
|
|
|
|
str[len - 1] = '\0';
|
2000-09-26 18:26:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-23 00:48:33 +03:00
|
|
|
/*
|
|
|
|
* Verify that the public data in an RSA key matches the private
|
2001-03-23 16:02:39 +03:00
|
|
|
* data. We also check the private data itself: we ensure that p >
|
|
|
|
* q and that iqmp really is the inverse of q mod p.
|
2001-03-23 00:48:33 +03:00
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
int rsa_verify(struct RSAKey *key)
|
|
|
|
{
|
2001-03-23 16:02:39 +03:00
|
|
|
Bignum n, ed, pm1, qm1;
|
2001-03-23 00:48:33 +03:00
|
|
|
int cmp;
|
|
|
|
|
|
|
|
/* n must equal pq. */
|
|
|
|
n = bigmul(key->p, key->q);
|
|
|
|
cmp = bignum_cmp(n, key->modulus);
|
|
|
|
freebn(n);
|
|
|
|
if (cmp != 0)
|
|
|
|
return 0;
|
|
|
|
|
2001-03-23 16:02:39 +03:00
|
|
|
/* e * d must be congruent to 1, modulo (p-1) and modulo (q-1). */
|
2001-03-23 00:48:33 +03:00
|
|
|
pm1 = copybn(key->p);
|
|
|
|
decbn(pm1);
|
2001-03-23 16:02:39 +03:00
|
|
|
ed = modmul(key->exponent, key->private_exponent, pm1);
|
|
|
|
cmp = bignum_cmp(ed, One);
|
|
|
|
sfree(ed);
|
|
|
|
if (cmp != 0)
|
|
|
|
return 0;
|
|
|
|
|
2001-03-23 00:48:33 +03:00
|
|
|
qm1 = copybn(key->q);
|
|
|
|
decbn(qm1);
|
2001-03-23 16:02:39 +03:00
|
|
|
ed = modmul(key->exponent, key->private_exponent, qm1);
|
2001-03-23 00:48:33 +03:00
|
|
|
cmp = bignum_cmp(ed, One);
|
|
|
|
sfree(ed);
|
|
|
|
if (cmp != 0)
|
|
|
|
return 0;
|
2001-03-23 12:20:43 +03:00
|
|
|
|
2001-03-23 16:02:39 +03:00
|
|
|
/*
|
|
|
|
* Ensure p > q.
|
|
|
|
*/
|
|
|
|
if (bignum_cmp(key->p, key->q) <= 0)
|
2001-05-06 18:35:20 +04:00
|
|
|
return 0;
|
2001-03-23 16:02:39 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Ensure iqmp * q is congruent to 1, modulo p.
|
|
|
|
*/
|
|
|
|
n = modmul(key->iqmp, key->q, key->p);
|
|
|
|
cmp = bignum_cmp(n, One);
|
|
|
|
sfree(n);
|
|
|
|
if (cmp != 0)
|
2001-05-06 18:35:20 +04:00
|
|
|
return 0;
|
2001-03-23 16:02:39 +03:00
|
|
|
|
2001-03-23 12:20:43 +03:00
|
|
|
return 1;
|
2001-03-23 00:48:33 +03:00
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
void freersakey(struct RSAKey *key)
|
|
|
|
{
|
|
|
|
if (key->modulus)
|
|
|
|
freebn(key->modulus);
|
|
|
|
if (key->exponent)
|
|
|
|
freebn(key->exponent);
|
|
|
|
if (key->private_exponent)
|
|
|
|
freebn(key->private_exponent);
|
|
|
|
if (key->comment)
|
|
|
|
sfree(key->comment);
|
2000-09-14 19:02:50 +04:00
|
|
|
}
|
2001-03-02 20:13:36 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
* Implementation of the ssh-rsa signing key type.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GET_32BIT(cp) \
|
|
|
|
(((unsigned long)(unsigned char)(cp)[0] << 24) | \
|
|
|
|
((unsigned long)(unsigned char)(cp)[1] << 16) | \
|
|
|
|
((unsigned long)(unsigned char)(cp)[2] << 8) | \
|
|
|
|
((unsigned long)(unsigned char)(cp)[3]))
|
|
|
|
|
|
|
|
#define PUT_32BIT(cp, value) { \
|
|
|
|
(cp)[0] = (unsigned char)((value) >> 24); \
|
|
|
|
(cp)[1] = (unsigned char)((value) >> 16); \
|
|
|
|
(cp)[2] = (unsigned char)((value) >> 8); \
|
|
|
|
(cp)[3] = (unsigned char)(value); }
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static void getstring(char **data, int *datalen, char **p, int *length)
|
|
|
|
{
|
2001-03-02 20:13:36 +03:00
|
|
|
*p = NULL;
|
|
|
|
if (*datalen < 4)
|
2001-05-06 18:35:20 +04:00
|
|
|
return;
|
2001-03-02 20:13:36 +03:00
|
|
|
*length = GET_32BIT(*data);
|
2001-05-06 18:35:20 +04:00
|
|
|
*datalen -= 4;
|
|
|
|
*data += 4;
|
2001-03-02 20:13:36 +03:00
|
|
|
if (*datalen < *length)
|
2001-05-06 18:35:20 +04:00
|
|
|
return;
|
2001-03-02 20:13:36 +03:00
|
|
|
*p = *data;
|
2001-05-06 18:35:20 +04:00
|
|
|
*data += *length;
|
|
|
|
*datalen -= *length;
|
2001-03-02 20:13:36 +03:00
|
|
|
}
|
2001-05-06 18:35:20 +04:00
|
|
|
static Bignum getmp(char **data, int *datalen)
|
|
|
|
{
|
2001-03-02 20:13:36 +03:00
|
|
|
char *p;
|
|
|
|
int length;
|
|
|
|
Bignum b;
|
|
|
|
|
|
|
|
getstring(data, datalen, &p, &length);
|
|
|
|
if (!p)
|
2001-05-06 18:35:20 +04:00
|
|
|
return NULL;
|
2001-03-02 20:13:36 +03:00
|
|
|
b = bignum_from_bytes(p, length);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static void *rsa2_newkey(char *data, int len)
|
|
|
|
{
|
2001-03-02 20:13:36 +03:00
|
|
|
char *p;
|
|
|
|
int slen;
|
|
|
|
struct RSAKey *rsa;
|
|
|
|
|
|
|
|
rsa = smalloc(sizeof(struct RSAKey));
|
2001-05-06 18:35:20 +04:00
|
|
|
if (!rsa)
|
|
|
|
return NULL;
|
2001-03-02 20:13:36 +03:00
|
|
|
getstring(&data, &len, &p, &slen);
|
|
|
|
|
2001-03-03 18:31:35 +03:00
|
|
|
if (!p || slen != 7 || memcmp(p, "ssh-rsa", 7)) {
|
2001-03-02 20:13:36 +03:00
|
|
|
sfree(rsa);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
rsa->exponent = getmp(&data, &len);
|
|
|
|
rsa->modulus = getmp(&data, &len);
|
|
|
|
rsa->private_exponent = NULL;
|
|
|
|
rsa->comment = NULL;
|
|
|
|
|
|
|
|
return rsa;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static void rsa2_freekey(void *key)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-02 20:13:36 +03:00
|
|
|
freersakey(rsa);
|
|
|
|
sfree(rsa);
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static char *rsa2_fmtkey(void *key)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-02 20:13:36 +03:00
|
|
|
char *p;
|
|
|
|
int len;
|
2001-05-06 18:35:20 +04:00
|
|
|
|
2001-03-02 20:13:36 +03:00
|
|
|
len = rsastr_len(rsa);
|
|
|
|
p = smalloc(len);
|
2001-05-06 18:35:20 +04:00
|
|
|
rsastr_fmt(p, rsa);
|
2001-03-02 20:13:36 +03:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static unsigned char *rsa2_public_blob(void *key, int *len)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-03 14:54:34 +03:00
|
|
|
int elen, mlen, bloblen;
|
|
|
|
int i;
|
|
|
|
unsigned char *blob, *p;
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
elen = (bignum_bitcount(rsa->exponent) + 8) / 8;
|
|
|
|
mlen = (bignum_bitcount(rsa->modulus) + 8) / 8;
|
2001-03-03 14:54:34 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* string "ssh-rsa", mpint exp, mpint mod. Total 19+elen+mlen.
|
|
|
|
* (three length fields, 12+7=19).
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
bloblen = 19 + elen + mlen;
|
2001-03-03 14:54:34 +03:00
|
|
|
blob = smalloc(bloblen);
|
|
|
|
p = blob;
|
2001-05-06 18:35:20 +04:00
|
|
|
PUT_32BIT(p, 7);
|
|
|
|
p += 4;
|
|
|
|
memcpy(p, "ssh-rsa", 7);
|
|
|
|
p += 7;
|
|
|
|
PUT_32BIT(p, elen);
|
|
|
|
p += 4;
|
|
|
|
for (i = elen; i--;)
|
|
|
|
*p++ = bignum_byte(rsa->exponent, i);
|
|
|
|
PUT_32BIT(p, mlen);
|
|
|
|
p += 4;
|
|
|
|
for (i = mlen; i--;)
|
|
|
|
*p++ = bignum_byte(rsa->modulus, i);
|
2001-03-03 14:54:34 +03:00
|
|
|
assert(p == blob + bloblen);
|
|
|
|
*len = bloblen;
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static unsigned char *rsa2_private_blob(void *key, int *len)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-03 14:54:34 +03:00
|
|
|
int dlen, plen, qlen, ulen, bloblen;
|
|
|
|
int i;
|
|
|
|
unsigned char *blob, *p;
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
dlen = (bignum_bitcount(rsa->private_exponent) + 8) / 8;
|
|
|
|
plen = (bignum_bitcount(rsa->p) + 8) / 8;
|
|
|
|
qlen = (bignum_bitcount(rsa->q) + 8) / 8;
|
|
|
|
ulen = (bignum_bitcount(rsa->iqmp) + 8) / 8;
|
2001-03-03 14:54:34 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* mpint private_exp, mpint p, mpint q, mpint iqmp. Total 16 +
|
|
|
|
* sum of lengths.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
bloblen = 16 + dlen + plen + qlen + ulen;
|
2001-03-03 14:54:34 +03:00
|
|
|
blob = smalloc(bloblen);
|
|
|
|
p = blob;
|
2001-05-06 18:35:20 +04:00
|
|
|
PUT_32BIT(p, dlen);
|
|
|
|
p += 4;
|
|
|
|
for (i = dlen; i--;)
|
|
|
|
*p++ = bignum_byte(rsa->private_exponent, i);
|
|
|
|
PUT_32BIT(p, plen);
|
|
|
|
p += 4;
|
|
|
|
for (i = plen; i--;)
|
|
|
|
*p++ = bignum_byte(rsa->p, i);
|
|
|
|
PUT_32BIT(p, qlen);
|
|
|
|
p += 4;
|
|
|
|
for (i = qlen; i--;)
|
|
|
|
*p++ = bignum_byte(rsa->q, i);
|
|
|
|
PUT_32BIT(p, ulen);
|
|
|
|
p += 4;
|
|
|
|
for (i = ulen; i--;)
|
|
|
|
*p++ = bignum_byte(rsa->iqmp, i);
|
2001-03-03 14:54:34 +03:00
|
|
|
assert(p == blob + bloblen);
|
|
|
|
*len = bloblen;
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *rsa2_createkey(unsigned char *pub_blob, int pub_len,
|
2001-05-06 18:35:20 +04:00
|
|
|
unsigned char *priv_blob, int priv_len)
|
|
|
|
{
|
2001-03-03 14:54:34 +03:00
|
|
|
struct RSAKey *rsa;
|
2001-05-06 18:35:20 +04:00
|
|
|
char *pb = (char *) priv_blob;
|
|
|
|
|
|
|
|
rsa = rsa2_newkey((char *) pub_blob, pub_len);
|
2001-03-03 14:54:34 +03:00
|
|
|
rsa->private_exponent = getmp(&pb, &priv_len);
|
|
|
|
rsa->p = getmp(&pb, &priv_len);
|
|
|
|
rsa->q = getmp(&pb, &priv_len);
|
|
|
|
rsa->iqmp = getmp(&pb, &priv_len);
|
|
|
|
|
2001-03-23 00:48:33 +03:00
|
|
|
if (!rsa_verify(rsa)) {
|
|
|
|
rsa2_freekey(rsa);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
return rsa;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static void *rsa2_openssh_createkey(unsigned char **blob, int *len)
|
|
|
|
{
|
|
|
|
char **b = (char **) blob;
|
2001-03-03 18:31:35 +03:00
|
|
|
struct RSAKey *rsa;
|
|
|
|
|
|
|
|
rsa = smalloc(sizeof(struct RSAKey));
|
2001-05-06 18:35:20 +04:00
|
|
|
if (!rsa)
|
|
|
|
return NULL;
|
2001-03-03 18:31:35 +03:00
|
|
|
rsa->comment = NULL;
|
|
|
|
|
|
|
|
rsa->modulus = getmp(b, len);
|
|
|
|
rsa->exponent = getmp(b, len);
|
|
|
|
rsa->private_exponent = getmp(b, len);
|
|
|
|
rsa->iqmp = getmp(b, len);
|
|
|
|
rsa->p = getmp(b, len);
|
|
|
|
rsa->q = getmp(b, len);
|
|
|
|
|
|
|
|
if (!rsa->modulus || !rsa->exponent || !rsa->private_exponent ||
|
|
|
|
!rsa->iqmp || !rsa->p || !rsa->q) {
|
|
|
|
sfree(rsa->modulus);
|
|
|
|
sfree(rsa->exponent);
|
|
|
|
sfree(rsa->private_exponent);
|
|
|
|
sfree(rsa->iqmp);
|
|
|
|
sfree(rsa->p);
|
|
|
|
sfree(rsa->q);
|
|
|
|
sfree(rsa);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rsa;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static int rsa2_openssh_fmtkey(void *key, unsigned char *blob, int len)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-04-16 15:16:58 +04:00
|
|
|
int bloblen, i;
|
|
|
|
|
|
|
|
bloblen =
|
|
|
|
ssh2_bignum_length(rsa->modulus) +
|
|
|
|
ssh2_bignum_length(rsa->exponent) +
|
|
|
|
ssh2_bignum_length(rsa->private_exponent) +
|
|
|
|
ssh2_bignum_length(rsa->iqmp) +
|
2001-05-06 18:35:20 +04:00
|
|
|
ssh2_bignum_length(rsa->p) + ssh2_bignum_length(rsa->q);
|
2001-04-16 15:16:58 +04:00
|
|
|
|
|
|
|
if (bloblen > len)
|
|
|
|
return bloblen;
|
|
|
|
|
|
|
|
bloblen = 0;
|
|
|
|
#define ENC(x) \
|
|
|
|
PUT_32BIT(blob+bloblen, ssh2_bignum_length((x))-4); bloblen += 4; \
|
|
|
|
for (i = ssh2_bignum_length((x))-4; i-- ;) blob[bloblen++]=bignum_byte((x),i);
|
|
|
|
ENC(rsa->modulus);
|
|
|
|
ENC(rsa->exponent);
|
|
|
|
ENC(rsa->private_exponent);
|
|
|
|
ENC(rsa->iqmp);
|
|
|
|
ENC(rsa->p);
|
|
|
|
ENC(rsa->q);
|
|
|
|
|
|
|
|
return bloblen;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static char *rsa2_fingerprint(void *key)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-02 20:13:36 +03:00
|
|
|
struct MD5Context md5c;
|
|
|
|
unsigned char digest[16], lenbuf[4];
|
2001-05-06 18:35:20 +04:00
|
|
|
char buffer[16 * 3 + 40];
|
2001-03-02 20:13:36 +03:00
|
|
|
char *ret;
|
|
|
|
int numlen, i;
|
|
|
|
|
|
|
|
MD5Init(&md5c);
|
|
|
|
MD5Update(&md5c, "\0\0\0\7ssh-rsa", 11);
|
|
|
|
|
|
|
|
#define ADD_BIGNUM(bignum) \
|
2001-04-16 15:16:58 +04:00
|
|
|
numlen = (bignum_bitcount(bignum)+8)/8; \
|
2001-03-02 20:13:36 +03:00
|
|
|
PUT_32BIT(lenbuf, numlen); MD5Update(&md5c, lenbuf, 4); \
|
|
|
|
for (i = numlen; i-- ;) { \
|
|
|
|
unsigned char c = bignum_byte(bignum, i); \
|
|
|
|
MD5Update(&md5c, &c, 1); \
|
|
|
|
}
|
|
|
|
ADD_BIGNUM(rsa->exponent);
|
|
|
|
ADD_BIGNUM(rsa->modulus);
|
|
|
|
#undef ADD_BIGNUM
|
|
|
|
|
|
|
|
MD5Final(digest, &md5c);
|
|
|
|
|
2001-04-16 15:16:58 +04:00
|
|
|
sprintf(buffer, "ssh-rsa %d ", bignum_bitcount(rsa->modulus));
|
2001-03-02 20:13:36 +03:00
|
|
|
for (i = 0; i < 16; i++)
|
2001-05-06 18:35:20 +04:00
|
|
|
sprintf(buffer + strlen(buffer), "%s%02x", i ? ":" : "",
|
|
|
|
digest[i]);
|
|
|
|
ret = smalloc(strlen(buffer) + 1);
|
2001-03-02 20:13:36 +03:00
|
|
|
if (ret)
|
2001-05-06 18:35:20 +04:00
|
|
|
strcpy(ret, buffer);
|
2001-03-02 20:13:36 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the magic ASN.1/DER prefix that goes in the decoded
|
|
|
|
* signature, between the string of FFs and the actual SHA hash
|
2001-03-09 16:30:43 +03:00
|
|
|
* value. The meaning of it is:
|
2001-03-02 20:13:36 +03:00
|
|
|
*
|
|
|
|
* 00 -- this marks the end of the FFs; not part of the ASN.1 bit itself
|
|
|
|
*
|
|
|
|
* 30 21 -- a constructed SEQUENCE of length 0x21
|
|
|
|
* 30 09 -- a constructed sub-SEQUENCE of length 9
|
|
|
|
* 06 05 -- an object identifier, length 5
|
2001-03-09 16:30:43 +03:00
|
|
|
* 2B 0E 03 02 1A -- object id { 1 3 14 3 2 26 }
|
|
|
|
* (the 1,3 comes from 0x2B = 43 = 40*1+3)
|
2001-03-02 20:13:36 +03:00
|
|
|
* 05 00 -- NULL
|
|
|
|
* 04 14 -- a primitive OCTET STRING of length 0x14
|
|
|
|
* [0x14 bytes of hash data follows]
|
2001-03-09 16:30:43 +03:00
|
|
|
*
|
|
|
|
* The object id in the middle there is listed as `id-sha1' in
|
|
|
|
* ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1d2.asn (the
|
|
|
|
* ASN module for PKCS #1) and its expanded form is as follows:
|
|
|
|
*
|
|
|
|
* id-sha1 OBJECT IDENTIFIER ::= {
|
|
|
|
* iso(1) identified-organization(3) oiw(14) secsig(3)
|
|
|
|
* algorithms(2) 26 }
|
2001-03-02 20:13:36 +03:00
|
|
|
*/
|
|
|
|
static unsigned char asn1_weird_stuff[] = {
|
2001-05-06 18:35:20 +04:00
|
|
|
0x00, 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B,
|
|
|
|
0x0E, 0x03, 0x02, 0x1A, 0x05, 0x00, 0x04, 0x14,
|
2001-03-02 20:13:36 +03:00
|
|
|
};
|
|
|
|
|
2001-03-05 20:31:36 +03:00
|
|
|
#define ASN1_LEN ( (int) sizeof(asn1_weird_stuff) )
|
|
|
|
|
2001-03-02 20:13:36 +03:00
|
|
|
static int rsa2_verifysig(void *key, char *sig, int siglen,
|
2001-05-06 18:35:20 +04:00
|
|
|
char *data, int datalen)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-02 20:13:36 +03:00
|
|
|
Bignum in, out;
|
|
|
|
char *p;
|
|
|
|
int slen;
|
|
|
|
int bytes, i, j, ret;
|
|
|
|
unsigned char hash[20];
|
|
|
|
|
|
|
|
getstring(&sig, &siglen, &p, &slen);
|
|
|
|
if (!p || slen != 7 || memcmp(p, "ssh-rsa", 7)) {
|
2001-05-06 18:35:20 +04:00
|
|
|
return 0;
|
2001-03-02 20:13:36 +03:00
|
|
|
}
|
|
|
|
in = getmp(&sig, &siglen);
|
|
|
|
out = modpow(in, rsa->exponent, rsa->modulus);
|
|
|
|
freebn(in);
|
|
|
|
|
|
|
|
ret = 1;
|
|
|
|
|
2001-04-16 15:16:58 +04:00
|
|
|
bytes = bignum_bitcount(rsa->modulus) / 8;
|
2001-03-02 20:13:36 +03:00
|
|
|
/* Top (partial) byte should be zero. */
|
2001-05-06 18:35:20 +04:00
|
|
|
if (bignum_byte(out, bytes - 1) != 0)
|
|
|
|
ret = 0;
|
2001-03-02 20:13:36 +03:00
|
|
|
/* First whole byte should be 1. */
|
2001-05-06 18:35:20 +04:00
|
|
|
if (bignum_byte(out, bytes - 2) != 1)
|
|
|
|
ret = 0;
|
2001-03-02 20:13:36 +03:00
|
|
|
/* Most of the rest should be FF. */
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = bytes - 3; i >= 20 + ASN1_LEN; i--) {
|
|
|
|
if (bignum_byte(out, i) != 0xFF)
|
|
|
|
ret = 0;
|
2001-03-02 20:13:36 +03:00
|
|
|
}
|
|
|
|
/* Then we expect to see the asn1_weird_stuff. */
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = 20 + ASN1_LEN - 1, j = 0; i >= 20; i--, j++) {
|
|
|
|
if (bignum_byte(out, i) != asn1_weird_stuff[j])
|
|
|
|
ret = 0;
|
2001-03-02 20:13:36 +03:00
|
|
|
}
|
|
|
|
/* Finally, we expect to see the SHA-1 hash of the signed data. */
|
|
|
|
SHA_Simple(data, datalen, hash);
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = 19, j = 0; i >= 0; i--, j++) {
|
|
|
|
if (bignum_byte(out, i) != hash[j])
|
|
|
|
ret = 0;
|
2001-03-02 20:13:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
unsigned char *rsa2_sign(void *key, char *data, int datalen, int *siglen)
|
|
|
|
{
|
|
|
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
2001-03-03 14:54:34 +03:00
|
|
|
unsigned char *bytes;
|
|
|
|
int nbytes;
|
|
|
|
unsigned char hash[20];
|
|
|
|
Bignum in, out;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
SHA_Simple(data, datalen, hash);
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
nbytes = (bignum_bitcount(rsa->modulus) - 1) / 8;
|
2001-03-03 14:54:34 +03:00
|
|
|
bytes = smalloc(nbytes);
|
|
|
|
|
|
|
|
bytes[0] = 1;
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = 1; i < nbytes - 20 - ASN1_LEN; i++)
|
2001-03-03 14:54:34 +03:00
|
|
|
bytes[i] = 0xFF;
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = nbytes - 20 - ASN1_LEN, j = 0; i < nbytes - 20; i++, j++)
|
2001-03-03 14:54:34 +03:00
|
|
|
bytes[i] = asn1_weird_stuff[j];
|
2001-05-06 18:35:20 +04:00
|
|
|
for (i = nbytes - 20, j = 0; i < nbytes; i++, j++)
|
2001-03-03 14:54:34 +03:00
|
|
|
bytes[i] = hash[j];
|
|
|
|
|
|
|
|
in = bignum_from_bytes(bytes, nbytes);
|
|
|
|
sfree(bytes);
|
|
|
|
|
|
|
|
out = modpow(in, rsa->private_exponent, rsa->modulus);
|
|
|
|
freebn(in);
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
nbytes = (bignum_bitcount(out) + 7) / 8;
|
|
|
|
bytes = smalloc(4 + 7 + 4 + nbytes);
|
2001-03-03 14:54:34 +03:00
|
|
|
PUT_32BIT(bytes, 7);
|
2001-05-06 18:35:20 +04:00
|
|
|
memcpy(bytes + 4, "ssh-rsa", 7);
|
|
|
|
PUT_32BIT(bytes + 4 + 7, nbytes);
|
2001-03-03 14:54:34 +03:00
|
|
|
for (i = 0; i < nbytes; i++)
|
2001-05-06 18:35:20 +04:00
|
|
|
bytes[4 + 7 + 4 + i] = bignum_byte(out, nbytes - 1 - i);
|
2001-03-03 14:54:34 +03:00
|
|
|
freebn(out);
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
*siglen = 4 + 7 + 4 + nbytes;
|
2001-03-03 14:54:34 +03:00
|
|
|
return bytes;
|
2001-03-02 20:13:36 +03:00
|
|
|
}
|
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
const struct ssh_signkey ssh_rsa = {
|
2001-03-02 20:13:36 +03:00
|
|
|
rsa2_newkey,
|
|
|
|
rsa2_freekey,
|
|
|
|
rsa2_fmtkey,
|
2001-03-03 14:54:34 +03:00
|
|
|
rsa2_public_blob,
|
|
|
|
rsa2_private_blob,
|
|
|
|
rsa2_createkey,
|
2001-03-03 18:31:35 +03:00
|
|
|
rsa2_openssh_createkey,
|
2001-04-16 15:16:58 +04:00
|
|
|
rsa2_openssh_fmtkey,
|
2001-03-02 20:13:36 +03:00
|
|
|
rsa2_fingerprint,
|
|
|
|
rsa2_verifysig,
|
|
|
|
rsa2_sign,
|
|
|
|
"ssh-rsa",
|
|
|
|
"rsa2"
|
|
|
|
};
|