1) OpenSSL Upgrade

wget http://www.openssl.org/source/openssl-0.9.8.tar.gz
tar -zxf openssl-0.9.8.tar.gz
cd openssl-0.9.8
./Configure --prefix=/usr linux-pentium
make
make install


2) OpenSSH Upgrade

wget http://ftp.belnet.be/packages/openbsd/Open...sh-4.1p1.tar.gz
tar -zxvf openssh-4.1p1.tar.gz
cd openssh-4.1p1
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-ssl-dir=/usr/local/src/openssl-0.9.8 --with-pam
make
make install
/sbin/service sshd restart


3) After the command
ssh -V
you should see the result:
OpenSSH_4.1p1, OpenSSL 0.9.8 25 Jul 2005