1999-10-27 07:42:43 +04:00
|
|
|
/*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999 Niels Provos. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Description of the RSA algorithm can be found e.g. from the following
|
|
|
|
* sources:
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Bruce Schneier: Applied Cryptography. John Wiley & Sons, 1994.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Jennifer Seberry and Josed Pieprzyk: Cryptography: An Introduction to
|
|
|
|
* Computer Security. Prentice-Hall, 1989.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Man Young Rhee: Cryptography and Secure Data Communications. McGraw-Hill,
|
|
|
|
* 1994.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* R. Rivest, A. Shamir, and L. M. Adleman: Cryptographic Communications
|
|
|
|
* System and Method. US Patent 4,405,829, 1983.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Hans Riesel: Prime Numbers and Computer Methods for Factorization.
|
|
|
|
* Birkhauser, 1994.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* The RSA Frequently Asked Questions document by RSA Data Security,
|
|
|
|
* Inc., 1995.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* RSA in 3 lines of perl by Adam Back <aba@atlax.ex.ac.uk>, 1995, as
|
|
|
|
* included below:
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* [gone - had to be deleted - what a pity]
|
2000-09-16 06:29:08 +04:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "includes.h"
|
2000-12-22 04:43:59 +03:00
|
|
|
RCSID("$OpenBSD: rsa.c,v 1.18 2000/12/19 23:17:57 markus Exp $");
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "rsa.h"
|
|
|
|
#include "ssh.h"
|
|
|
|
#include "xmalloc.h"
|
|
|
|
|
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2000-12-22 04:43:59 +03:00
|
|
|
u_char *inbuf, *outbuf;
|
1999-11-24 16:26:21 +03:00
|
|
|
int len, ilen, olen;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03: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 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
olen = BN_num_bytes(key->n);
|
|
|
|
outbuf = xmalloc(olen);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
ilen = BN_num_bytes(in);
|
|
|
|
inbuf = xmalloc(ilen);
|
|
|
|
BN_bn2bin(in, inbuf);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03: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 13:27:49 +03:00
|
|
|
RSA_PKCS1_PADDING)) <= 0)
|
1999-11-24 16:26:21 +03:00
|
|
|
fatal("rsa_public_encrypt() failed");
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
BN_bin2bn(outbuf, len, out);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
memset(outbuf, 0, olen);
|
|
|
|
memset(inbuf, 0, ilen);
|
|
|
|
xfree(outbuf);
|
|
|
|
xfree(inbuf);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rsa_private_decrypt(BIGNUM *out, BIGNUM *in, RSA *key)
|
|
|
|
{
|
2000-12-22 04:43:59 +03:00
|
|
|
u_char *inbuf, *outbuf;
|
1999-11-24 16:26:21 +03:00
|
|
|
int len, ilen, olen;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
olen = BN_num_bytes(key->n);
|
|
|
|
outbuf = xmalloc(olen);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
ilen = BN_num_bytes(in);
|
|
|
|
inbuf = xmalloc(ilen);
|
|
|
|
BN_bn2bin(in, inbuf);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03: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 13:27:49 +03:00
|
|
|
RSA_PKCS1_PADDING)) <= 0)
|
1999-11-24 16:26:21 +03:00
|
|
|
fatal("rsa_private_decrypt() failed");
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
BN_bin2bn(outbuf, len, out);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
memset(outbuf, 0, olen);
|
|
|
|
memset(inbuf, 0, ilen);
|
|
|
|
xfree(outbuf);
|
|
|
|
xfree(inbuf);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|