1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
*
|
|
|
|
* rsa.c
|
|
|
|
*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
*
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* Created: Fri Mar 3 22:07:06 1995 ylo
|
|
|
|
*
|
|
|
|
* Description of the RSA algorithm can be found e.g. from the following sources:
|
|
|
|
*
|
|
|
|
* Bruce Schneier: Applied Cryptography. John Wiley & Sons, 1994.
|
|
|
|
*
|
|
|
|
* Jennifer Seberry and Josed Pieprzyk: Cryptography: An Introduction to
|
|
|
|
* Computer Security. Prentice-Hall, 1989.
|
|
|
|
*
|
|
|
|
* Man Young Rhee: Cryptography and Secure Data Communications. McGraw-Hill,
|
|
|
|
* 1994.
|
|
|
|
*
|
|
|
|
* R. Rivest, A. Shamir, and L. M. Adleman: Cryptographic Communications
|
|
|
|
* System and Method. US Patent 4,405,829, 1983.
|
|
|
|
*
|
|
|
|
* Hans Riesel: Prime Numbers and Computer Methods for Factorization.
|
|
|
|
* Birkhauser, 1994.
|
|
|
|
*
|
|
|
|
* The RSA Frequently Asked Questions document by RSA Data Security, Inc., 1995.
|
|
|
|
*
|
|
|
|
* RSA in 3 lines of perl by Adam Back <aba@atlax.ex.ac.uk>, 1995, as included
|
|
|
|
* below:
|
|
|
|
*
|
|
|
|
* [gone - had to be deleted - what a pity]
|
|
|
|
*
|
1999-10-27 05:42:43 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 11:27:49 +01:00
|
|
|
RCSID("$Id: rsa.c,v 1.10 2000/03/09 10:27:51 damien Exp $");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "rsa.h"
|
|
|
|
#include "ssh.h"
|
|
|
|
#include "xmalloc.h"
|
2000-01-29 10:40:22 +01:00
|
|
|
#include "random.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
int rsa_verbose = 1;
|
|
|
|
|
2000-03-05 07:14:38 +01:00
|
|
|
/*
|
|
|
|
* Seed OpenSSL's random number generator
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
seed_rng()
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
|
|
|
|
get_random_bytes(buf, sizeof(buf));
|
|
|
|
RAND_seed(buf, sizeof(buf));
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
}
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
int
|
|
|
|
rsa_alive()
|
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
RSA *key;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-03-05 06:10:45 +01:00
|
|
|
seed_rng();
|
1999-11-24 14:26:21 +01:00
|
|
|
key = RSA_generate_key(32, 3, NULL, NULL);
|
|
|
|
if (key == NULL)
|
|
|
|
return (0);
|
|
|
|
RSA_free(key);
|
|
|
|
return (1);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-12-17 04:02:47 +01:00
|
|
|
/*
|
|
|
|
* Key generation progress meter callback
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
keygen_progress(int p, int n, void *arg)
|
|
|
|
{
|
|
|
|
const char progress_chars[] = ".o+O?";
|
|
|
|
|
|
|
|
if ((p < 0) || (p > (sizeof(progress_chars) - 2)))
|
2000-01-29 10:40:22 +01:00
|
|
|
p = sizeof(progress_chars) - 2;
|
1999-12-17 04:02:47 +01:00
|
|
|
|
2000-01-29 10:40:22 +01:00
|
|
|
putchar(progress_chars[p]);
|
1999-12-17 04:02:47 +01:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Generates RSA public and private keys. This initializes the data
|
|
|
|
* structures; they should be freed with rsa_clear_private_key and
|
|
|
|
* rsa_clear_public_key.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
rsa_generate_key(RSA *prv, RSA *pub, unsigned int bits)
|
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
RSA *key;
|
|
|
|
|
2000-01-29 10:40:22 +01:00
|
|
|
seed_rng();
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
if (rsa_verbose) {
|
|
|
|
printf("Generating RSA keys: ");
|
|
|
|
fflush(stdout);
|
1999-12-17 04:02:47 +01:00
|
|
|
key = RSA_generate_key(bits, 35, keygen_progress, NULL);
|
|
|
|
printf("\n");
|
|
|
|
} else {
|
|
|
|
key = RSA_generate_key(bits, 35, NULL, NULL);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
if (key == NULL)
|
|
|
|
fatal("rsa_generate_key: key generation failed.");
|
|
|
|
|
|
|
|
/* Copy public key parameters */
|
|
|
|
pub->n = BN_new();
|
|
|
|
BN_copy(pub->n, key->n);
|
|
|
|
pub->e = BN_new();
|
|
|
|
BN_copy(pub->e, key->e);
|
|
|
|
|
|
|
|
/* Copy private key parameters */
|
|
|
|
prv->n = BN_new();
|
|
|
|
BN_copy(prv->n, key->n);
|
|
|
|
prv->e = BN_new();
|
|
|
|
BN_copy(prv->e, key->e);
|
|
|
|
prv->d = BN_new();
|
|
|
|
BN_copy(prv->d, key->d);
|
|
|
|
prv->p = BN_new();
|
|
|
|
BN_copy(prv->p, key->p);
|
|
|
|
prv->q = BN_new();
|
|
|
|
BN_copy(prv->q, key->q);
|
|
|
|
|
|
|
|
prv->dmp1 = BN_new();
|
|
|
|
BN_copy(prv->dmp1, key->dmp1);
|
|
|
|
|
|
|
|
prv->dmq1 = BN_new();
|
|
|
|
BN_copy(prv->dmq1, key->dmq1);
|
|
|
|
|
|
|
|
prv->iqmp = BN_new();
|
|
|
|
BN_copy(prv->iqmp, key->iqmp);
|
|
|
|
|
|
|
|
RSA_free(key);
|
|
|
|
|
|
|
|
if (rsa_verbose)
|
|
|
|
printf("Key generation complete.\n");
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-11-24 14:26:21 +01:00
|
|
|
rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
char *inbuf, *outbuf;
|
|
|
|
int len, ilen, olen;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
if (BN_num_bits(key->e) < 2 || !BN_is_odd(key->e))
|
|
|
|
fatal("rsa_public_encrypt() exponent too small or not odd");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
olen = BN_num_bytes(key->n);
|
|
|
|
outbuf = xmalloc(olen);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
ilen = BN_num_bytes(in);
|
|
|
|
inbuf = xmalloc(ilen);
|
|
|
|
BN_bn2bin(in, inbuf);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 11:27:49 +01:00
|
|
|
RSA_PKCS1_PADDING)) <= 0)
|
1999-11-24 14:26:21 +01:00
|
|
|
fatal("rsa_public_encrypt() failed");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
BN_bin2bn(outbuf, len, out);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
memset(outbuf, 0, olen);
|
|
|
|
memset(inbuf, 0, ilen);
|
|
|
|
xfree(outbuf);
|
|
|
|
xfree(inbuf);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rsa_private_decrypt(BIGNUM *out, BIGNUM *in, RSA *key)
|
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
char *inbuf, *outbuf;
|
|
|
|
int len, ilen, olen;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
olen = BN_num_bytes(key->n);
|
|
|
|
outbuf = xmalloc(olen);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
ilen = BN_num_bytes(in);
|
|
|
|
inbuf = xmalloc(ilen);
|
|
|
|
BN_bn2bin(in, inbuf);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key,
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 11:27:49 +01:00
|
|
|
RSA_PKCS1_PADDING)) <= 0)
|
1999-11-24 14:26:21 +01:00
|
|
|
fatal("rsa_private_decrypt() failed");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
BN_bin2bn(outbuf, len, out);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
memset(outbuf, 0, olen);
|
|
|
|
memset(inbuf, 0, ilen);
|
|
|
|
xfree(outbuf);
|
|
|
|
xfree(inbuf);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set whether to output verbose messages during key generation. */
|
|
|
|
|
|
|
|
void
|
|
|
|
rsa_set_verbose(int verbose)
|
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
rsa_verbose = verbose;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|