From owner-freebsd-security-notifications Tue Jul 30 11:21:10 2002 Delivered-To: freebsd-security-notifications@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93B3837B400; Tue, 30 Jul 2002 11:21:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46A0143E65; Tue, 30 Jul 2002 11:21:05 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: from freefall.freebsd.org (nectar@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6UIL5JU034059; Tue, 30 Jul 2002 11:21:05 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6UIL5nc034058; Tue, 30 Jul 2002 11:21:05 -0700 (PDT) Date: Tue, 30 Jul 2002 11:21:05 -0700 (PDT) Message-Id: <200207301821.g6UIL5nc034058@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: nectar set sender to security-advisories@freebsd.org using -f From: FreeBSD Security Advisories To: FreeBSD Security Advisories Subject: FreeBSD Security Advisory FreeBSD-SA-02:23.stdio [REVISED] Sender: owner-freebsd-security-notifications@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Reply-To: postmaster@freebsd.org X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-02:23.stdio Security Advisory The FreeBSD Project Topic: insecure handling of stdio file descriptors Category: core Module: kernel Announced: 2002-04-22 Credits: Joost Pol , Georgi Guninski Affects: All releases of FreeBSD up to and including 4.6-RELEASE 4.6-STABLE prior to the correction date Corrected: 2002-07-30 15:40:46 UTC (RELENG_4) 2002-07-30 15:42:11 UTC (RELENG_4_6) 2002-07-30 15:42:46 UTC (RELENG_4_5) 2002-07-30 15:43:17 UTC (RELENG_4_4) FreeBSD only: NO 0. Revision History v1.0 2002-04-22 Initial release v1.1 2002-04-23 Patch and revision numbers updated v1.2 2002-07-29 procfs issue; updated patch I. Background By convention, POSIX systems associate file descriptors 0, 1, and 2 with standard input, standard output, and standard error, respectively. Almost all applications give these stdio file descriptors special significance, such as writing error messages to standard error (file descriptor 2). In new processes, all file descriptors are duplicated from the parent process. Unless these descriptors are marked close-on-exec, they retain their state during an exec. All POSIX systems assign file descriptors in sequential order, starting with the lowest unused file descriptor. For example, if a newly exec'd process has file descriptors 0 and 1 open, but file descriptor 2 closed, and then opens a file, the new file descriptor is guaranteed to be 2 (standard error). II. Problem Description Some programs are set-user-id or set-group-id, and therefore run with increased privileges. If such a program is started with some of the stdio file descriptors closed, the program may open a file and inadvertently associate it with standard input, standard output, or standard error. The program may then read data from or write data to the file inappropriately. If the file is one that the user would normally not have privileges to open, this may result in an opportunity for privilege escalation. The original correction for this problem (corresponding to the first revision of this advisory) contained an error. Systems using procfs or linprocfs could still be exploited. The dates for the original, incomplete correction were: Corrected: 2002-04-21 13:06:45 UTC (RELENG_4) 2002-04-21 13:08:57 UTC (RELENG_4_5) 2002-04-21 13:10:51 UTC (RELENG_4_4) III. Impact Local users may gain superuser privileges. It is known that the `keyinit' set-user-id program is exploitable using this method. There may be other programs that are exploitable. IV. Workaround [FreeBSD systems earlier than 4.5-RELEASE-p4 and 4.4-RELEASE-p11] None. The set-user-id bit may be removed from `keyinit' using the following command, but note that there may be other programs that can be exploited. # chmod 0555 /usr/bin/keyinit [FreeBSD versions 4.5-RELEASE-p4 or later, 4.4-RELEASE-p11 or later, 4.6-RELEASE, and 4.6-STABLE] Unmount all instances of the procfs and linprocfs filesystems using the umount(8) command: # umount -f -a -t procfs # umount -f -a -t linprocfs V. Solution The kernel was modified to check file descriptors 0, 1, and 2 when starting a set-user-ID or set-group-ID executable. If any of these are not in use, they will be redirected to /dev/null. 1) Upgrade your vulnerable system to 4.6-STABLE; or to any of the RELENG_4_6 (4.6.1-RELEASE-p1), RELENG_4_5 (4.5-RELEASE-p10), or RELENG_4_4 (4.4-RELEASE-p17) security branches dated after the respective correction dates. 2) To patch your present system: a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility. [FreeBSD systems earlier than 4.5-RELEASE-p4 and 4.4-RELEASE-p11] # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:23/stdio.patch.v1.2 # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:23/stdio.patch.v1.2.asc [FreeBSD versions 4.5-RELEASE-p4 or later, 4.4-RELEASE-p11 or later, 4.6-RELEASE, and 4.6-STABLE] # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:23/stdio2.patch.v1.2 # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:23/stdio2.patch.v1.2.asc b) Execute the following commands as root: # cd /usr/src # patch < /path/to/patch c) Recompile your kernel as described in http://www.freebsd.org/handbook/kernelconfig.html and reboot the system. VI. Correction details The following list contains the revision numbers of each file that was corrected in FreeBSD. Path Revision Branch - ------------------------------------------------------------------------- sys/sys/filedesc.h RELENG_4 1.19.2.4 RELENG_4_6 1.19.2.4 RELENG_4_5 1.19.2.3.6.1 RELENG_4_4 1.19.2.3.4.1 sys/kern/kern_exec.c RELENG_4 1.107.2.15 RELENG_4_6 1.107.2.14.2.1 RELENG_4_5 1.107.2.13.2.2 RELENG_4_4 1.107.2.8.2.3 sys/kern/kern_descrip.c RELENG_4 1.81.2.12 RELENG_4_6 1.81.2.14 RELENG_4_5 1.81.2.9.2.2 RELENG_4_4 1.81.2.8.2.2 sys/conf/newvers.sh RELENG_4_6 1.44.2.23.2.6 RELENG_4_5 1.44.2.20.2.11 RELENG_4_4 1.44.2.17.2.16 - ------------------------------------------------------------------------- VII. References PINE-CERT-20020401 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iQCVAwUBPUbXw1UuHi5z0oilAQFgKQP/eOnmHorw/4NVEAEKTQp4+X7Px9p1wUGq 6OcLH5GuTbbwexd7KbCjbjzNZF7zgz1Qph2v7NQXb+W/ZaW2hEgcoURXkBomVxjl 61oXu72P35bmgNo7GQ794v/WDHd8FymtBv0kyY/vuZqg6l99tTuwi2ryV1ZszVrh w21lAbhkyQo= =YGVw -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security-notifications" in the body of the message From owner-freebsd-security-notifications Wed Jul 31 5: 2:42 2002 Delivered-To: freebsd-security-notifications@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B24A37B49C; Wed, 31 Jul 2002 05:02:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E056D43E7B; Wed, 31 Jul 2002 05:02:22 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: from freefall.freebsd.org (nectar@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6VC2KJU023568; Wed, 31 Jul 2002 05:02:20 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6VC2KnC023566; Wed, 31 Jul 2002 05:02:20 -0700 (PDT) Date: Wed, 31 Jul 2002 05:02:20 -0700 (PDT) Message-Id: <200207311202.g6VC2KnC023566@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: nectar set sender to security-advisories@freebsd.org using -f From: FreeBSD Security Advisories To: FreeBSD Security Advisories Subject: FreeBSD Security Advisory FreeBSD-SA-02:32.pppd Sender: owner-freebsd-security-notifications@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Reply-To: postmaster@freebsd.org X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-02:32.pppd Security Advisory The FreeBSD Project Topic: exploitable race condition in pppd Category: core Module: pppd Announced: 2002-07-31 Credits: Sebastian Krahmer Affects: All releases of FreeBSD up to and including 4.6.1-RELEASE-p1 Corrected: 2002-07-30 03:50:40 UTC (RELENG_4) 2002-07-30 19:15:52 UTC (RELENG_4_6) 2002-07-30 19:16:46 UTC (RELENG_4_5) 2002-07-30 19:17:27 UTC (RELENG_4_4) FreeBSD only: NO I. Background FreeBSD ships with several implementations of the Point-to-Point Protocol (PPP). The pppd program is one of these implementations. It provides basic support for negotiating a link, while encapsulation is done by driver code in the kernel. II. Problem Description A race condition exists in the pppd program that may be exploited in order to change the permissions of an arbitrary file. The file specified as the tty device is opened by pppd, and the permissions are recorded. If pppd fails to initialize the tty device in some way (such as a failure of tcgetattr(3)), then pppd will then attempt to restore the original permissions by calling chmod(2). The call to chmod(2) is subject to a symlink race, so that the permissions may `restored' on some other file. Note that the pppd program is installed set-user-ID to root, so that any file's permissions may be changed in this fashion. III. Impact A malicious local user may exploit the race condition to acquire write permissions to a critical system file, such as /etc/crontab, and leverage the situation to acquire escalated privileges. In FreeBSD 4.4-RELEASE and later, the local user must be in group `dialer' in order to run pppd and attempt to exploit this race. IV. Workaround Remove the set-user-ID bit from pppd by executing the following command as root: # chmod u-s /usr/sbin/pppd V. Solution Do one of the following: 1) Upgrade your vulnerable system to 4.6-STABLE; or to the RELENG_4_6, RELENG_4_5, or RELENG_4_4 security branch dated after the correction date (4.6.1-RELEASE-p2, 4.5-RELEASE-p11, or 4.4-RELEASE-p18). 2) To patch your present system: The following patch has been verified to apply to FreeBSD 4.4, 4.5, and 4.6 systems. a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility. # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:32/pppd.patch # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:32/pppd.patch.asc b) Execute the following commands as root: # cd /usr/src # patch < /path/to/patch # cd /usr/src/usr.sbin/pppd # make depend && make && make install VI. Correction details The following list contains the revision numbers of each file that was corrected in FreeBSD. Path Revision Branch - ------------------------------------------------------------------------- usr.sbin/pppd/main.c RELENG_4 1.19.2.1 RELENG_4_6 1.19.10.1 RELENG_4_5 1.19.8.1 RELENG_4_4 1.19.6.1 sys/conf/newvers.sh RELENG_4_6 1.44.2.23.2.7 RELENG_4_5 1.44.2.20.2.12 RELENG_4_4 1.44.2.17.2.17 - ------------------------------------------------------------------------- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iQCVAwUBPUfQ4VUuHi5z0oilAQGaYwP/djtLXxRveB2xDy54hACNSArKnfAbEwEP PisB8Er2Zl4CmwnKx3BO8zWoV+nb7afcWGoy2eU14b/sXTLpInpx+823J8nP3BUK bsUInanuFxX6LfSTbzjRT+8wxxXKO4oarPFfxfVis09ekjO+FqTtm2pAV13ug/+s Wrb8IG4YYVA= =tfMD -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security-notifications" in the body of the message From owner-freebsd-security-notifications Wed Jul 31 10:44: 4 2002 Delivered-To: freebsd-security-notifications@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F317737B401; Wed, 31 Jul 2002 10:43:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E011643E6A; Wed, 31 Jul 2002 10:43:49 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: from freefall.freebsd.org (nectar@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6VHhnJU011364; Wed, 31 Jul 2002 10:43:49 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6VHhnj3011362; Wed, 31 Jul 2002 10:43:49 -0700 (PDT) Date: Wed, 31 Jul 2002 10:43:49 -0700 (PDT) Message-Id: <200207311743.g6VHhnj3011362@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: nectar set sender to security-advisories@freebsd.org using -f From: FreeBSD Security Advisories To: FreeBSD Security Advisories Subject: FreeBSD Security Advisory FreeBSD-SA-02:33.openssl Sender: owner-freebsd-security-notifications@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Reply-To: postmaster@freebsd.org X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-02:33.openssl Security Advisory The FreeBSD Project Topic: openssl contains multiple vulnerabilities Category: core Module: crypto/openssl Announced: 2002-07-31 Credits: A.L. Digital Ltd The Bunker The OpenSSL Project Adi Stav James Yonan Dr. Stephen Henson Neohapsis Affects: All releases of FreeBSD up to and including 4.6.1-RELEASE-p2 Corrected: 2002-07-30 22:04:59 UTC (RELENG_4) 2002-07-31 02:54:36 UTC (RELENG_4_6) 2002-07-31 14:04:45 UTC (RELENG_4_5) 2002-07-31 16:40:30 UTC (RELENG_4_4) FreeBSD only: NO I. Background FreeBSD includes software from the OpenSSL Project. The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. II. Problem Description The OpenSSL libraries contain multiple buffer overflows, including errors in the handling of the client master key in the SSL2 protocol implementation; the handling of the session ID in the SSL3 protocol; and in the handling of buffers used for representing integers in ASCII on 64-bit platforms. In addition, arbitrary or intentionally malicious data passed to the ASN.1 decoder may cause undefined behavior. Please see the OpenSSL Security Advisory in the `References' section for more details. III. Impact At least one of the buffer overflows is known to be exploitable, and the others may be as well. A successful exploit of an application using OpenSSL may result in arbitrary code execution. Both clients and servers may be attacked. IV. Workaround Disabling the SSL2 protocol in server applications should render server exploits harmless. There is no known workaround for client applications. V. Solution Do one of the following: 1) Upgrade your vulnerable system to 4.6-STABLE; or to the RELENG_4_6, RELENG_4_5, or RELENG_4_4 security branch dated after the correction date (4.6.1-RELEASE-p3, 4.5-RELEASE-p13, or 4.4-RELEASE-p20). 2) To patch your present system: The following patch has been verified to apply to FreeBSD 4.4, 4.5, and 4.6 systems. a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility. # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:33/openssl.patch # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:33/openssl.patch.asc b) Execute the following commands as root: # cd /usr/src # patch < /path/to/patch # find crypto/openssl -size 0c -delete c) Recompile the operating system as described in . Note that any statically linked applications that are not part of the base system (i.e. from the Ports Collection or other 3rd-party sources) must be recompiled if they use OpenSSL (libssl or libcrypto). All affected applications must be restarted in order to use the corrected library. Though it is not required, rebooting may be the easiest way to accomplish this. The following components of the FreeBSD base system are known to utilize OpenSSL's libssl or libcrypto. System administrators may choose to recompile only these applications rather than the entire operating system, though it is not recommended. src/bin/rcp src/gnu/usr.bin/cvs src/lib/libpam/modules/pam_kerberosIV src/lib/libpam/modules/pam_krb5 src/lib/libpam/modules/pam_ssh src/sbin/dump src/sbin/mount_nfs src/sbin/nfsd src/sbin/restore src/usr.bin/passwd src/usr.bin/rlogin src/usr.bin/rsh src/usr.bin/su src/usr.sbin/pkg_install src/usr.sbin/ppp src/usr.sbin/pppd src/usr.sbin/tcpdump VI. Correction details The following list contains the revision numbers of each file that was corrected in FreeBSD. Branch Revision Path - ------------------------------------------------------------------------- RELENG_4 src/crypto/openssl/CHANGES 1.1.1.1.2.3 src/crypto/openssl/Configure 1.1.1.1.2.3 src/crypto/openssl/FAQ 1.1.1.1.2.4 src/crypto/openssl/FREEBSD-Xlist 1.1.2.3 src/crypto/openssl/INSTALL 1.1.1.1.2.3 src/crypto/openssl/LICENSE 1.1.1.1.2.3 src/crypto/openssl/Makefile.org 1.1.1.1.2.4 src/crypto/openssl/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/NEWS 1.1.1.1.2.4 src/crypto/openssl/PROBLEMS 1.1.1.1.2.1 src/crypto/openssl/README 1.1.1.1.2.4 src/crypto/openssl/README.ENGINE 1.1.1.1.2.2 src/crypto/openssl/STATUS Removed src/crypto/openssl/TABLE Removed src/crypto/openssl/apps/CA.pl 1.1.1.1.2.3 src/crypto/openssl/apps/Makefile.save Removed src/crypto/openssl/apps/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/apps/apps.c 1.1.1.1.2.3 src/crypto/openssl/apps/asn1pars.c 1.1.1.1.2.3 src/crypto/openssl/apps/ca.c 1.1.1.1.2.3 src/crypto/openssl/apps/der_chop 1.1.1.1.2.2 src/crypto/openssl/apps/dgst.c 1.1.1.1.2.3 src/crypto/openssl/apps/dsaparam.c 1.1.1.1.2.4 src/crypto/openssl/apps/eay.c Removed src/crypto/openssl/apps/enc.c 1.1.1.1.2.3 src/crypto/openssl/apps/openssl.c 1.1.1.1.2.3 src/crypto/openssl/apps/openssl.cnf 1.1.1.1.2.5 src/crypto/openssl/apps/pem_mail.c Removed src/crypto/openssl/apps/pkcs12.c 1.1.1.1.2.3 src/crypto/openssl/apps/pkcs7.c 1.1.1.1.2.3 src/crypto/openssl/apps/req.c 1.1.1.1.2.4 src/crypto/openssl/apps/rsa/01.pem Removed src/crypto/openssl/apps/rsa/1.txt Removed src/crypto/openssl/apps/rsa/SecureServer.pem Removed src/crypto/openssl/apps/rsa/s.txt Removed src/crypto/openssl/apps/s_client.c 1.1.1.1.2.4 src/crypto/openssl/apps/s_time.c 1.1.1.1.2.2 src/crypto/openssl/apps/smime.c 1.1.1.1.2.3 src/crypto/openssl/apps/speed.c 1.3.2.4 src/crypto/openssl/apps/tkca Removed src/crypto/openssl/apps/x509.c 1.1.1.1.2.4 src/crypto/openssl/certs/rsa-ssca.pem Removed src/crypto/openssl/config 1.1.1.1.2.4 src/crypto/openssl/crypto/Makefile.save Removed src/crypto/openssl/crypto/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/asn1/Makefile.save Removed src/crypto/openssl/crypto/asn1/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/asn1/a_bitstr.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/a_enum.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/a_gentm.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/a_int.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/a_set.c 1.1.1.1.2.2 src/crypto/openssl/crypto/asn1/a_sign.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/a_strnid.c 1.1.1.1.2.4 src/crypto/openssl/crypto/asn1/a_time.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/a_utctm.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/asn1.h 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/asn1_lib.c 1.1.1.1.2.4 src/crypto/openssl/crypto/asn1/d2i_dhp.c 1.1.1.1.2.2 src/crypto/openssl/crypto/asn1/d2i_dsap.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/d2i_r_pr.c 1.1.1.1.2.2 src/crypto/openssl/crypto/asn1/pkcs8.c Removed src/crypto/openssl/crypto/asn1/t_pkey.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/t_x509.c 1.1.1.1.2.3 src/crypto/openssl/crypto/asn1/x_pubkey.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bf/Makefile.save Removed src/crypto/openssl/crypto/bf/Makefile.uni Removed src/crypto/openssl/crypto/bio/Makefile.save Removed src/crypto/openssl/crypto/bio/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/bio/b_print.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bio/b_sock.c 1.1.1.1.2.4 src/crypto/openssl/crypto/bio/bf_buff.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bio/bf_lbuf.c 1.1.1.1.2.2 src/crypto/openssl/crypto/bio/bf_nbio.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bio/bio.h 1.1.1.1.2.3 src/crypto/openssl/crypto/bio/bss_bio.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bio/bss_log.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bn/Makefile.save Removed src/crypto/openssl/crypto/bn/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/bn/asm/ia64.S 1.1.1.1.2.1 src/crypto/openssl/crypto/bn/asm/mips3.s 1.1.1.1.2.3 src/crypto/openssl/crypto/bn/bn.h 1.1.1.1.2.4 src/crypto/openssl/crypto/bn/bn_comba.c Removed src/crypto/openssl/crypto/bn/bn_div.c 1.1.1.1.2.4 src/crypto/openssl/crypto/bn/bn_gcd.c 1.1.1.1.2.2 src/crypto/openssl/crypto/bn/bn_mont.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bn/bn_mul.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bn/bn_opts.c Removed src/crypto/openssl/crypto/bn/bn_prime.c 1.1.1.1.2.2 src/crypto/openssl/crypto/bn/bn_rand.c 1.1.1.1.2.4 src/crypto/openssl/crypto/bn/bn_sqr.c 1.1.1.1.2.3 src/crypto/openssl/crypto/bn/comba.pl Removed src/crypto/openssl/crypto/bn/d.c Removed src/crypto/openssl/crypto/bn/new Removed src/crypto/openssl/crypto/bn/old/b_sqr.c Removed src/crypto/openssl/crypto/bn/old/bn_com.c Removed src/crypto/openssl/crypto/bn/old/bn_high.c Removed src/crypto/openssl/crypto/bn/old/bn_ka.c Removed src/crypto/openssl/crypto/bn/old/bn_low.c Removed src/crypto/openssl/crypto/bn/old/bn_m.c Removed src/crypto/openssl/crypto/bn/old/bn_mul.c.works Removed src/crypto/openssl/crypto/bn/old/bn_wmul.c Removed src/crypto/openssl/crypto/bn/old/build Removed src/crypto/openssl/crypto/bn/old/info Removed src/crypto/openssl/crypto/bn/old/test.works Removed src/crypto/openssl/crypto/buffer/Makefile.save Removed src/crypto/openssl/crypto/buffer/buffer.h 1.1.1.1.2.1 src/crypto/openssl/crypto/cast/Makefile.save Removed src/crypto/openssl/crypto/cast/Makefile.uni Removed src/crypto/openssl/crypto/comp/Makefile.save Removed src/crypto/openssl/crypto/comp/Makefile.ssl 1.1.1.1.2.3 src/crypto/openssl/crypto/comp/comp.h 1.1.1.1.2.3 src/crypto/openssl/crypto/conf/Makefile.save Removed src/crypto/openssl/crypto/conf/Makefile.ssl 1.1.1.1.2.3 src/crypto/openssl/crypto/conf/conf.c Removed src/crypto/openssl/crypto/conf/conf.h 1.1.1.1.2.4 src/crypto/openssl/crypto/conf/conf_api.c 1.1.1.1.2.2 src/crypto/openssl/crypto/conf/conf_def.c 1.1.1.1.2.2 src/crypto/openssl/crypto/conf/conf_def.h 1.1.1.1.2.2 src/crypto/openssl/crypto/conf/conf_lcl.h Removed src/crypto/openssl/crypto/conf/keysets.pl 1.1.1.1.2.2 src/crypto/openssl/crypto/cryptlib.c 1.1.1.1.2.3 src/crypto/openssl/crypto/cryptlib.h 1.1.1.1.2.2 src/crypto/openssl/crypto/crypto.h 1.1.1.1.2.4 src/crypto/openssl/crypto/des/DES.pod Removed src/crypto/openssl/crypto/des/MODES.DES Removed src/crypto/openssl/crypto/des/Makefile.PL Removed src/crypto/openssl/crypto/des/Makefile.lit Removed src/crypto/openssl/crypto/des/Makefile.save Removed src/crypto/openssl/crypto/des/Makefile.uni Removed src/crypto/openssl/crypto/des/PC1 Removed src/crypto/openssl/crypto/des/PC2 Removed src/crypto/openssl/crypto/des/des.h 1.2.2.4 src/crypto/openssl/crypto/des/des.man Removed src/crypto/openssl/crypto/des/des.pl Removed src/crypto/openssl/crypto/des/des_crypt.man Removed src/crypto/openssl/crypto/des/doIP Removed src/crypto/openssl/crypto/des/doPC1 Removed src/crypto/openssl/crypto/des/doPC2 Removed src/crypto/openssl/crypto/des/fcrypt.c 1.1.1.1.2.2 src/crypto/openssl/crypto/des/podd.h Removed src/crypto/openssl/crypto/des/read_pwd.c 1.1.1.1.2.3 src/crypto/openssl/crypto/des/rnd_keys.c 1.1.2.3 src/crypto/openssl/crypto/des/shifts.pl Removed src/crypto/openssl/crypto/des/sk.h Removed src/crypto/openssl/crypto/des/supp.c Removed src/crypto/openssl/crypto/des/testdes.pl Removed src/crypto/openssl/crypto/dh/Makefile.save Removed src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.3 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.2 src/crypto/openssl/crypto/dh/dh_gen.c 1.1.1.1.2.2 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.4 src/crypto/openssl/crypto/dh/dh_lib.c 1.1.1.1.2.4 src/crypto/openssl/crypto/dh/dhtest.c 1.1.1.1.2.3 src/crypto/openssl/crypto/dsa/Makefile.save Removed src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.3 src/crypto/openssl/crypto/dsa/dsa_asn1.c 1.1.1.1.2.3 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.2 src/crypto/openssl/crypto/dsa/dsa_lib.c 1.1.1.1.2.4 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.1.1.1.2.4 src/crypto/openssl/crypto/dso/dso.h 1.1.1.1.2.2 src/crypto/openssl/crypto/dso/dso_dlfcn.c 1.1.1.1.2.2 src/crypto/openssl/crypto/ebcdic.c 1.1.1.1.2.3 src/crypto/openssl/crypto/err/Makefile.save Removed src/crypto/openssl/crypto/err/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/err/err.c 1.1.1.1.2.4 src/crypto/openssl/crypto/err/err.h 1.1.1.1.2.3 src/crypto/openssl/crypto/err/err_all.c 1.2.2.4 src/crypto/openssl/crypto/evp/Makefile.save Removed src/crypto/openssl/crypto/evp/bio_b64.c 1.1.1.1.2.3 src/crypto/openssl/crypto/evp/bio_enc.c 1.1.1.1.2.3 src/crypto/openssl/crypto/evp/c_allc.c 1.1.1.1.2.2 src/crypto/openssl/crypto/evp/c_alld.c 1.1.1.1.2.3 src/crypto/openssl/crypto/evp/e_bf.c 1.1.1.1.2.2 src/crypto/openssl/crypto/evp/e_cbc_3d.c Removed src/crypto/openssl/crypto/evp/e_cbc_bf.c Removed src/crypto/openssl/crypto/evp/e_cbc_c.c Removed src/crypto/openssl/crypto/evp/e_cbc_d.c Removed src/crypto/openssl/crypto/evp/e_cbc_i.c Removed src/crypto/openssl/crypto/evp/e_cbc_r2.c Removed src/crypto/openssl/crypto/evp/e_cbc_r5.c Removed src/crypto/openssl/crypto/evp/e_cfb_3d.c Removed src/crypto/openssl/crypto/evp/e_cfb_bf.c Removed src/crypto/openssl/crypto/evp/e_cfb_c.c Removed src/crypto/openssl/crypto/evp/e_cfb_d.c Removed src/crypto/openssl/crypto/evp/e_cfb_i.c Removed src/crypto/openssl/crypto/evp/e_cfb_r2.c Removed src/crypto/openssl/crypto/evp/e_cfb_r5.c Removed src/crypto/openssl/crypto/evp/e_ecb_3d.c Removed src/crypto/openssl/crypto/evp/e_ecb_bf.c Removed src/crypto/openssl/crypto/evp/e_ecb_c.c Removed src/crypto/openssl/crypto/evp/e_ecb_d.c Removed src/crypto/openssl/crypto/evp/e_ecb_i.c Removed src/crypto/openssl/crypto/evp/e_ecb_r2.c Removed src/crypto/openssl/crypto/evp/e_ecb_r5.c Removed src/crypto/openssl/crypto/evp/e_ofb_3d.c Removed src/crypto/openssl/crypto/evp/e_ofb_bf.c Removed src/crypto/openssl/crypto/evp/e_ofb_c.c Removed src/crypto/openssl/crypto/evp/e_ofb_d.c Removed src/crypto/openssl/crypto/evp/e_ofb_i.c Removed src/crypto/openssl/crypto/evp/e_ofb_r2.c Removed src/crypto/openssl/crypto/evp/e_ofb_r5.c Removed src/crypto/openssl/crypto/evp/encode.c 1.1.1.1.2.3 src/crypto/openssl/crypto/evp/evp.h 1.2.2.4 src/crypto/openssl/crypto/evp/evp_key.c 1.1.1.1.2.3 src/crypto/openssl/crypto/evp/m_md4.c 1.1.1.1.2.2 src/crypto/openssl/crypto/hmac/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.ssl 1.4.2.4 src/crypto/openssl/crypto/idea/Makefile.uni Removed src/crypto/openssl/crypto/idea/i_cbc.c 1.4.2.4 src/crypto/openssl/crypto/idea/i_cfb64.c 1.4.2.4 src/crypto/openssl/crypto/idea/i_ecb.c 1.4.2.4 src/crypto/openssl/crypto/idea/i_ofb64.c 1.4.2.4 src/crypto/openssl/crypto/idea/i_skey.c 1.4.2.4 src/crypto/openssl/crypto/idea/idea.h 1.4.2.4 src/crypto/openssl/crypto/idea/idea_lcl.h 1.4.2.4 src/crypto/openssl/crypto/idea/idea_spd.c 1.4.2.4 src/crypto/openssl/crypto/idea/ideatest.c 1.4.2.4 src/crypto/openssl/crypto/idea/version 1.4.2.4 src/crypto/openssl/crypto/lhash/Makefile.save Removed src/crypto/openssl/crypto/lhash/lh_test.c 1.1.1.1.2.2 src/crypto/openssl/crypto/md2/Makefile.save Removed src/crypto/openssl/crypto/md2/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/md32_common.h 1.1.1.1.2.2 src/crypto/openssl/crypto/md4/md4_locl.h 1.1.1.1.2.2 src/crypto/openssl/crypto/md5/Makefile.save Removed src/crypto/openssl/crypto/md5/Makefile.uni Removed src/crypto/openssl/crypto/md5/md5_locl.h 1.1.1.1.2.2 src/crypto/openssl/crypto/mdc2/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/objects/o_names.c 1.1.1.1.2.3 src/crypto/openssl/crypto/objects/obj_dat.c 1.1.1.1.2.3 src/crypto/openssl/crypto/objects/obj_dat.h 1.1.1.1.2.3 src/crypto/openssl/crypto/objects/obj_dat.pl 1.1.1.1.2.3 src/crypto/openssl/crypto/objects/obj_mac.h 1.1.1.1.2.2 src/crypto/openssl/crypto/objects/obj_mac.num 1.1.1.1.2.2 src/crypto/openssl/crypto/objects/objects.h 1.1.1.1.2.3 src/crypto/openssl/crypto/objects/objects.pl 1.1.1.1.2.2 src/crypto/openssl/crypto/objects/objects.txt 1.1.1.1.2.2 src/crypto/openssl/crypto/opensslv.h 1.1.1.1.2.4 src/crypto/openssl/crypto/pem/Makefile.save Removed src/crypto/openssl/crypto/pem/pem.h 1.1.1.1.2.3 src/crypto/openssl/crypto/pem/pem2.h 1.1.1.1.2.2 src/crypto/openssl/crypto/pem/pem_info.c 1.1.1.1.2.4 src/crypto/openssl/crypto/pem/pem_lib.c 1.1.1.1.2.3 src/crypto/openssl/crypto/perlasm/x86nasm.pl 1.1.1.1.2.1 src/crypto/openssl/crypto/perlasm/x86unix.pl 1.1.1.1.2.2 src/crypto/openssl/crypto/pkcs12/Makefile.save Removed src/crypto/openssl/crypto/pkcs12/pkcs12.h 1.1.1.1.2.4 src/crypto/openssl/crypto/pkcs7/Makefile.save Removed src/crypto/openssl/crypto/pkcs7/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/pkcs7/README Removed src/crypto/openssl/crypto/pkcs7/pk7_attr.c 1.1.1.1.2.3 src/crypto/openssl/crypto/pkcs7/pk7_doit.c 1.1.1.1.2.4 src/crypto/openssl/crypto/pkcs7/pkcs7.h 1.1.1.1.2.3 src/crypto/openssl/crypto/pkcs7/verify.c 1.1.1.1.2.2 src/crypto/openssl/crypto/rand/Makefile.save Removed src/crypto/openssl/crypto/rand/md_rand.c 1.1.1.1.2.5 src/crypto/openssl/crypto/rand/rand.h 1.1.1.1.2.4 src/crypto/openssl/crypto/rand/rand_egd.c 1.1.1.1.2.4 src/crypto/openssl/crypto/rand/rand_win.c 1.1.1.1.2.3 src/crypto/openssl/crypto/rand/randfile.c 1.1.1.1.2.4 src/crypto/openssl/crypto/rc2/Makefile.save Removed src/crypto/openssl/crypto/rc2/Makefile.uni Removed src/crypto/openssl/crypto/rc4/Makefile.save Removed src/crypto/openssl/crypto/rc4/Makefile.uni Removed src/crypto/openssl/crypto/rc5/Makefile.save Removed src/crypto/openssl/crypto/rc5/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/Makefile.save Removed src/crypto/openssl/crypto/ripemd/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/rmd_locl.h 1.1.1.1.2.2 src/crypto/openssl/crypto/rsa/Makefile.save Removed src/crypto/openssl/crypto/rsa/rsa.h 1.2.2.5 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.2.4.3 src/crypto/openssl/crypto/rsa/rsa_err.c 1.1.1.1.2.2 src/crypto/openssl/crypto/rsa/rsa_lib.c 1.2.2.4 src/crypto/openssl/crypto/rsa/rsa_oaep.c 1.1.1.1.2.3 src/crypto/openssl/crypto/rsa/rsa_oaep_test.c Removed src/crypto/openssl/crypto/sha/Makefile.save Removed src/crypto/openssl/crypto/sha/Makefile.uni Removed src/crypto/openssl/crypto/sha/sha_locl.h 1.1.1.1.2.2 src/crypto/openssl/crypto/stack/Makefile.save Removed src/crypto/openssl/crypto/tmdiff.c 1.1.1.1.2.2 src/crypto/openssl/crypto/txt_db/Makefile.save Removed src/crypto/openssl/crypto/txt_db/txt_db.c 1.1.1.1.2.3 src/crypto/openssl/crypto/x509/Makefile.save Removed src/crypto/openssl/crypto/x509/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/x509/x509.h 1.1.1.1.2.3 src/crypto/openssl/crypto/x509/x509_obj.c 1.1.1.1.2.2 src/crypto/openssl/crypto/x509/x509_trs.c 1.1.1.1.2.3 src/crypto/openssl/crypto/x509/x509_txt.c 1.1.1.1.2.3 src/crypto/openssl/crypto/x509/x509_vfy.c 1.1.1.1.2.3 src/crypto/openssl/crypto/x509/x509_vfy.h 1.1.1.1.2.3 src/crypto/openssl/crypto/x509v3/Makefile.save Removed src/crypto/openssl/crypto/x509v3/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/crypto/x509v3/README Removed src/crypto/openssl/crypto/x509v3/v3_ia5.c 1.1.1.1.2.3 src/crypto/openssl/crypto/x509v3/v3_utl.c 1.1.1.1.2.3 src/crypto/openssl/crypto/x509v3/x509v3.h 1.1.1.1.2.3 src/crypto/openssl/demos/b64.c 1.1.1.1.2.2 src/crypto/openssl/demos/maurice/example1.c 1.1.1.1.2.1 src/crypto/openssl/demos/maurice/loadkeys.c 1.1.1.1.2.1 src/crypto/openssl/dep/crypto.txt Removed src/crypto/openssl/dep/files Removed src/crypto/openssl/dep/gen.pl Removed src/crypto/openssl/dep/ssl.txt Removed src/crypto/openssl/doc/apps/ca.pod 1.1.1.1.2.3 src/crypto/openssl/doc/apps/crl2pkcs7.pod 1.1.1.1.2.2 src/crypto/openssl/doc/apps/enc.pod 1.1.1.1.2.2 src/crypto/openssl/doc/apps/openssl.pod 1.1.1.1.2.3 src/crypto/openssl/doc/apps/rsautl.pod 1.1.1.1.2.2 src/crypto/openssl/doc/apps/s_server.pod 1.1.1.1.2.3 src/crypto/openssl/doc/apps/smime.pod 1.1.1.1.2.3 src/crypto/openssl/doc/apps/verify.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto.pod Removed src/crypto/openssl/doc/crypto/BN_bn2bin.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/BN_rand.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/DH_get_ex_new_index.pod 1.1.1.1.2.2 src/crypto/openssl/doc/crypto/EVP_DigestInit.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/EVP_EncryptInit.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/EVP_SignInit.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/EVP_VerifyInit.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/RSA_check_key.pod 1.1.1.1.2.2 src/crypto/openssl/doc/crypto/RSA_generate_key.pod 1.1.1.1.2.2 src/crypto/openssl/doc/crypto/bio.pod 1.1.1.1.2.2 src/crypto/openssl/doc/crypto/blowfish.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/bn.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/crypto.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/des_modes.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/err.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/rand.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/rsa.pod 1.1.1.1.2.3 src/crypto/openssl/doc/crypto/threads.pod 1.1.1.1.2.3 src/crypto/openssl/doc/openssl.pod Removed src/crypto/openssl/doc/ssl.pod Removed src/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_ctrl.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_free.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_CTX_get_ex_new_index.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_load_verify_locations.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_new.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_get_cb.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod 1.1.1.2.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_verify_callback.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_cert_cb.pod 1.1.1.2.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_default_passwd_cb.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_info_callback.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_mode.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_quiet_shutdown.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_session_cache_mode.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_timeout.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_SESSION_free.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_SESSION_get_ex_new_index.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_SESSION_get_time.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_accept.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_alert_type_string.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_clear.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_connect.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_do_handshake.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_get_SSL_CTX.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_get_client_CA_list.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/SSL_get_default_timeout.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_get_error.pod 1.1.1.1.2.4 src/crypto/openssl/doc/ssl/SSL_get_ex_new_index.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_get_peer_certificate.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_get_session.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_new.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_read.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_rstate_string.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_session_reused.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_set_connect_state.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_set_session.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_set_shutdown.pod 1.1.1.1.2.2 src/crypto/openssl/doc/ssl/SSL_shutdown.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/SSL_state_string.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_want.pod 1.1.1.1.2.1 src/crypto/openssl/doc/ssl/SSL_write.pod 1.1.1.1.2.3 src/crypto/openssl/doc/ssl/d2i_SSL_SESSION.pod 1.1.1.2.2.2 src/crypto/openssl/doc/ssl/ssl.pod 1.1.1.1.2.4 src/crypto/openssl/doc/ssleay.txt 1.1.1.1.2.3 src/crypto/openssl/e_os.h 1.1.1.1.2.4 src/crypto/openssl/e_os2.h 1.1.1.1.2.2 src/crypto/openssl/mt/README Removed src/crypto/openssl/mt/mttest.c Removed src/crypto/openssl/mt/profile.sh Removed src/crypto/openssl/mt/pthread.sh Removed src/crypto/openssl/mt/purify.sh Removed src/crypto/openssl/mt/solaris.sh Removed src/crypto/openssl/openssl.spec 1.1.1.1.2.3 src/crypto/openssl/shlib/Makefile.hpux10-cc Removed src/crypto/openssl/shlib/hpux10-cc.sh Removed src/crypto/openssl/shlib/irix.sh Removed src/crypto/openssl/shlib/solaris-sc4.sh Removed src/crypto/openssl/shlib/solaris.sh Removed src/crypto/openssl/shlib/sun.sh Removed src/crypto/openssl/ssl/Makefile.save Removed src/crypto/openssl/ssl/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/ssl/s23_clnt.c 1.2.2.4 src/crypto/openssl/ssl/s23_lib.c 1.2.2.4 src/crypto/openssl/ssl/s23_pkt.c 1.1.1.1.2.2 src/crypto/openssl/ssl/s23_srvr.c 1.2.2.4 src/crypto/openssl/ssl/s2_clnt.c 1.2.2.4 src/crypto/openssl/ssl/s2_enc.c 1.2.2.4 src/crypto/openssl/ssl/s2_lib.c 1.2.2.4 src/crypto/openssl/ssl/s2_meth.c 1.2.2.4 src/crypto/openssl/ssl/s2_pkt.c 1.2.2.4 src/crypto/openssl/ssl/s2_srvr.c 1.2.2.4 src/crypto/openssl/ssl/s3_both.c 1.1.1.1.2.4 src/crypto/openssl/ssl/s3_clnt.c 1.1.1.1.2.4 src/crypto/openssl/ssl/s3_enc.c 1.1.1.1.2.4 src/crypto/openssl/ssl/s3_lib.c 1.1.1.1.2.4 src/crypto/openssl/ssl/s3_pkt.c 1.1.1.1.2.4 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl.h 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl2.h 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl3.h 1.1.1.1.2.3 src/crypto/openssl/ssl/ssl_asn1.c 1.1.1.1.2.3 src/crypto/openssl/ssl/ssl_cert.c 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl_err.c 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl_lib.c 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl_locl.h 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl_sess.c 1.1.1.1.2.4 src/crypto/openssl/ssl/ssl_stat.c 1.1.1.1.2.2 src/crypto/openssl/ssl/ssltest.c 1.1.1.1.2.3 src/crypto/openssl/ssl/t1_enc.c 1.1.1.1.2.4 src/crypto/openssl/test/Makefile.save Removed src/crypto/openssl/test/Makefile.ssl 1.1.1.1.2.4 src/crypto/openssl/test/bctest 1.1.1.2.2.2 src/crypto/openssl/test/dsa-ca.pem Removed src/crypto/openssl/test/dsa-pca.pem Removed src/crypto/openssl/test/testss 1.1.1.1.2.2 src/crypto/openssl/tools/c89.sh 1.1.1.1.2.1 src/crypto/openssl/tools/c_rehash 1.1.1.1.2.3 src/crypto/openssl/util/dirname.pl 1.1.1.1.2.1 src/crypto/openssl/util/domd 1.1.1.1.2.2 src/crypto/openssl/util/libeay.num 1.1.1.1.2.4 src/crypto/openssl/util/mk1mf.pl 1.1.1.1.2.3 src/crypto/openssl/util/mkdef.pl 1.1.1.1.2.4 src/crypto/openssl/util/mkerr.pl 1.1.1.1.2.3 src/crypto/openssl/util/pl/BC-32.pl 1.1.1.1.2.3 src/crypto/openssl/util/pl/Mingw32.pl 1.1.1.1.2.4 src/crypto/openssl/util/pl/VC-32.pl 1.1.1.1.2.3 src/crypto/openssl/util/pod2man.pl 1.1.1.1.2.3 src/crypto/openssl/util/pod2mantest 1.1.1.1.2.1 src/crypto/openssl/util/pod2mantest.pod 1.1.1.1.2.1 src/crypto/openssl/util/selftest.pl 1.1.1.1.2.3 src/crypto/openssl/util/sep_lib.sh Removed src/crypto/openssl/util/ssleay.num 1.1.1.1.2.3 src/secure/lib/libcrypto/Makefile 1.15.2.13 src/secure/lib/libcrypto/des_crypt.3 1.1.1.2.2.1 src/secure/lib/libcrypto/opensslconf-alpha.h 1.1.2.3 RELENG_4_6 src/crypto/openssl/CHANGES 1.1.1.1.2.2.6.1 src/crypto/openssl/Configure 1.1.1.1.2.2.6.1 src/crypto/openssl/FAQ 1.1.1.1.2.3.6.1 src/crypto/openssl/FREEBSD-Xlist 1.1.2.2.6.1 src/crypto/openssl/INSTALL 1.1.1.1.2.2.8.1 src/crypto/openssl/LICENSE 1.1.1.1.2.2.6.1 src/crypto/openssl/Makefile.org 1.1.1.1.2.3.6.1 src/crypto/openssl/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/NEWS 1.1.1.1.2.3.6.1 src/crypto/openssl/README 1.1.1.1.2.3.6.1 src/crypto/openssl/README.ENGINE 1.1.1.1.2.1.8.1 src/crypto/openssl/STATUS Removed src/crypto/openssl/TABLE Removed src/crypto/openssl/apps/CA.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/Makefile.save Removed src/crypto/openssl/apps/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/apps/apps.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/asn1pars.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/ca.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/der_chop 1.1.1.1.2.1.8.1 src/crypto/openssl/apps/dgst.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/dsaparam.c 1.1.1.1.2.3.6.1 src/crypto/openssl/apps/eay.c Removed src/crypto/openssl/apps/enc.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/openssl.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/pem_mail.c Removed src/crypto/openssl/apps/pkcs12.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/pkcs7.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/req.c 1.1.1.1.2.3.6.1 src/crypto/openssl/apps/rsa/01.pem Removed src/crypto/openssl/apps/rsa/1.txt Removed src/crypto/openssl/apps/rsa/SecureServer.pem Removed src/crypto/openssl/apps/rsa/s.txt Removed src/crypto/openssl/apps/s_client.c 1.1.1.1.2.3.6.1 src/crypto/openssl/apps/s_time.c 1.1.1.1.2.1.8.1 src/crypto/openssl/apps/smime.c 1.1.1.1.2.2.8.1 src/crypto/openssl/apps/speed.c 1.3.2.3.6.1 src/crypto/openssl/apps/tkca Removed src/crypto/openssl/apps/x509.c 1.1.1.1.2.3.6.1 src/crypto/openssl/certs/rsa-ssca.pem Removed src/crypto/openssl/config 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/Makefile.save Removed src/crypto/openssl/crypto/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/asn1/Makefile.save Removed src/crypto/openssl/crypto/asn1/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/asn1/a_bitstr.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/a_enum.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/a_gentm.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/a_int.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/a_set.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/asn1/a_sign.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/a_strnid.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/asn1/a_time.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/a_utctm.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/asn1.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/asn1_lib.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/asn1/d2i_dhp.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/asn1/d2i_dsap.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/d2i_r_pr.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/asn1/pkcs8.c Removed src/crypto/openssl/crypto/asn1/t_pkey.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/t_x509.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/asn1/x_pubkey.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bf/Makefile.save Removed src/crypto/openssl/crypto/bf/Makefile.uni Removed src/crypto/openssl/crypto/bio/Makefile.save Removed src/crypto/openssl/crypto/bio/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/bio/b_print.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bio/b_sock.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/bio/bf_buff.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bio/bf_lbuf.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/bio/bf_nbio.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bio/bio.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bio/bss_bio.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bio/bss_log.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bn/Makefile.save Removed src/crypto/openssl/crypto/bn/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/bn/asm/mips3.s 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bn/bn.h 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/bn/bn_comba.c Removed src/crypto/openssl/crypto/bn/bn_div.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/bn/bn_gcd.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/bn/bn_mont.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bn/bn_mul.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bn/bn_opts.c Removed src/crypto/openssl/crypto/bn/bn_prime.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/bn/bn_rand.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/bn/bn_sqr.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/bn/comba.pl Removed src/crypto/openssl/crypto/bn/d.c Removed src/crypto/openssl/crypto/bn/new Removed src/crypto/openssl/crypto/bn/old/b_sqr.c Removed src/crypto/openssl/crypto/bn/old/bn_com.c Removed src/crypto/openssl/crypto/bn/old/bn_high.c Removed src/crypto/openssl/crypto/bn/old/bn_ka.c Removed src/crypto/openssl/crypto/bn/old/bn_low.c Removed src/crypto/openssl/crypto/bn/old/bn_m.c Removed src/crypto/openssl/crypto/bn/old/bn_mul.c.works Removed src/crypto/openssl/crypto/bn/old/bn_wmul.c Removed src/crypto/openssl/crypto/bn/old/build Removed src/crypto/openssl/crypto/bn/old/info Removed src/crypto/openssl/crypto/bn/old/test.works Removed src/crypto/openssl/crypto/buffer/Makefile.save Removed src/crypto/openssl/crypto/buffer/buffer.h 1.1.1.1.10.1 src/crypto/openssl/crypto/cast/Makefile.save Removed src/crypto/openssl/crypto/cast/Makefile.uni Removed src/crypto/openssl/crypto/comp/Makefile.save Removed src/crypto/openssl/crypto/comp/Makefile.ssl 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/comp/comp.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/conf/Makefile.save Removed src/crypto/openssl/crypto/conf/Makefile.ssl 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/conf/conf.c Removed src/crypto/openssl/crypto/conf/conf.h 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/conf/conf_api.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/conf/conf_def.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/conf/conf_def.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/conf/conf_lcl.h Removed src/crypto/openssl/crypto/conf/keysets.pl 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/cryptlib.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/cryptlib.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/crypto.h 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/des/DES.pod Removed src/crypto/openssl/crypto/des/MODES.DES Removed src/crypto/openssl/crypto/des/Makefile.PL Removed src/crypto/openssl/crypto/des/Makefile.lit Removed src/crypto/openssl/crypto/des/Makefile.save Removed src/crypto/openssl/crypto/des/Makefile.uni Removed src/crypto/openssl/crypto/des/PC1 Removed src/crypto/openssl/crypto/des/PC2 Removed src/crypto/openssl/crypto/des/des.h 1.2.2.3.6.1 src/crypto/openssl/crypto/des/des.man Removed src/crypto/openssl/crypto/des/des.pl Removed src/crypto/openssl/crypto/des/des_crypt.man Removed src/crypto/openssl/crypto/des/doIP Removed src/crypto/openssl/crypto/des/doPC1 Removed src/crypto/openssl/crypto/des/doPC2 Removed src/crypto/openssl/crypto/des/fcrypt.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/des/podd.h Removed src/crypto/openssl/crypto/des/read_pwd.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/des/shifts.pl Removed src/crypto/openssl/crypto/des/sk.h Removed src/crypto/openssl/crypto/des/supp.c Removed src/crypto/openssl/crypto/des/testdes.pl Removed src/crypto/openssl/crypto/dh/Makefile.save Removed src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/dh/dh_gen.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/dh/dh_lib.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/dh/dhtest.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/dsa/Makefile.save Removed src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/dsa/dsa_asn1.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/dsa/dsa_lib.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/dso/dso.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/dso/dso_dlfcn.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/ebcdic.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/err/Makefile.save Removed src/crypto/openssl/crypto/err/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/err/err.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/err/err.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/evp/Makefile.save Removed src/crypto/openssl/crypto/evp/bio_b64.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/evp/bio_enc.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/evp/c_allc.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/evp/c_alld.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/evp/e_bf.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/evp/e_cbc_3d.c Removed src/crypto/openssl/crypto/evp/e_cbc_bf.c Removed src/crypto/openssl/crypto/evp/e_cbc_c.c Removed src/crypto/openssl/crypto/evp/e_cbc_d.c Removed src/crypto/openssl/crypto/evp/e_cbc_i.c Removed src/crypto/openssl/crypto/evp/e_cbc_r2.c Removed src/crypto/openssl/crypto/evp/e_cbc_r5.c Removed src/crypto/openssl/crypto/evp/e_cfb_3d.c Removed src/crypto/openssl/crypto/evp/e_cfb_bf.c Removed src/crypto/openssl/crypto/evp/e_cfb_c.c Removed src/crypto/openssl/crypto/evp/e_cfb_d.c Removed src/crypto/openssl/crypto/evp/e_cfb_i.c Removed src/crypto/openssl/crypto/evp/e_cfb_r2.c Removed src/crypto/openssl/crypto/evp/e_cfb_r5.c Removed src/crypto/openssl/crypto/evp/e_ecb_3d.c Removed src/crypto/openssl/crypto/evp/e_ecb_bf.c Removed src/crypto/openssl/crypto/evp/e_ecb_c.c Removed src/crypto/openssl/crypto/evp/e_ecb_d.c Removed src/crypto/openssl/crypto/evp/e_ecb_i.c Removed src/crypto/openssl/crypto/evp/e_ecb_r2.c Removed src/crypto/openssl/crypto/evp/e_ecb_r5.c Removed src/crypto/openssl/crypto/evp/e_ofb_3d.c Removed src/crypto/openssl/crypto/evp/e_ofb_bf.c Removed src/crypto/openssl/crypto/evp/e_ofb_c.c Removed src/crypto/openssl/crypto/evp/e_ofb_d.c Removed src/crypto/openssl/crypto/evp/e_ofb_i.c Removed src/crypto/openssl/crypto/evp/e_ofb_r2.c Removed src/crypto/openssl/crypto/evp/e_ofb_r5.c Removed src/crypto/openssl/crypto/evp/encode.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/evp/evp.h 1.2.2.3.6.1 src/crypto/openssl/crypto/evp/evp_key.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/evp/m_md4.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/hmac/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.uni Removed src/crypto/openssl/crypto/lhash/Makefile.save Removed src/crypto/openssl/crypto/lhash/lh_test.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/md2/Makefile.save Removed src/crypto/openssl/crypto/md2/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/md32_common.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/md4/md4_locl.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/md5/Makefile.save Removed src/crypto/openssl/crypto/md5/Makefile.uni Removed src/crypto/openssl/crypto/md5/md5_locl.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/mdc2/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/objects/o_names.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/objects/obj_dat.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/objects/obj_dat.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/objects/obj_dat.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/objects/obj_mac.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/objects/obj_mac.num 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/objects/objects.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/objects/objects.pl 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/objects/objects.txt 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/opensslv.h 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/pem/Makefile.save Removed src/crypto/openssl/crypto/pem/pem.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/pem/pem2.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/pem/pem_info.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/pem/pem_lib.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/perlasm/x86nasm.pl 1.1.1.1.10.1 src/crypto/openssl/crypto/perlasm/x86unix.pl 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/pkcs12/Makefile.save Removed src/crypto/openssl/crypto/pkcs12/pkcs12.h 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/pkcs7/Makefile.save Removed src/crypto/openssl/crypto/pkcs7/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/pkcs7/README Removed src/crypto/openssl/crypto/pkcs7/pk7_attr.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/pkcs7/pk7_doit.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/pkcs7/pkcs7.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/pkcs7/verify.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/rand/Makefile.save Removed src/crypto/openssl/crypto/rand/md_rand.c 1.1.1.1.2.4.6.1 src/crypto/openssl/crypto/rand/rand.h 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/rand/rand_egd.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/rand/rand_win.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/rand/randfile.c 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/rc2/Makefile.save Removed src/crypto/openssl/crypto/rc2/Makefile.uni Removed src/crypto/openssl/crypto/rc4/Makefile.save Removed src/crypto/openssl/crypto/rc4/Makefile.uni Removed src/crypto/openssl/crypto/rc5/Makefile.save Removed src/crypto/openssl/crypto/rc5/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/Makefile.save Removed src/crypto/openssl/crypto/ripemd/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/rmd_locl.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/rsa/Makefile.save Removed src/crypto/openssl/crypto/rsa/rsa.h 1.2.2.4.6.1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.2.4.2.6.1 src/crypto/openssl/crypto/rsa/rsa_err.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/rsa/rsa_oaep.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/rsa/rsa_oaep_test.c Removed src/crypto/openssl/crypto/sha/Makefile.save Removed src/crypto/openssl/crypto/sha/Makefile.uni Removed src/crypto/openssl/crypto/sha/sha_locl.h 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/stack/Makefile.save Removed src/crypto/openssl/crypto/tmdiff.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/txt_db/Makefile.save Removed src/crypto/openssl/crypto/txt_db/txt_db.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509/Makefile.save Removed src/crypto/openssl/crypto/x509/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/x509/x509.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509/x509_obj.c 1.1.1.1.2.1.8.1 src/crypto/openssl/crypto/x509/x509_trs.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509/x509_txt.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509/x509_vfy.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509/x509_vfy.h 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509v3/Makefile.save Removed src/crypto/openssl/crypto/x509v3/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/crypto/x509v3/README Removed src/crypto/openssl/crypto/x509v3/v3_ia5.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509v3/v3_utl.c 1.1.1.1.2.2.8.1 src/crypto/openssl/crypto/x509v3/x509v3.h 1.1.1.1.2.2.8.1 src/crypto/openssl/demos/b64.c 1.1.1.1.2.1.8.1 src/crypto/openssl/demos/maurice/example1.c 1.1.1.1.10.1 src/crypto/openssl/demos/maurice/loadkeys.c 1.1.1.1.10.1 src/crypto/openssl/dep/crypto.txt Removed src/crypto/openssl/dep/files Removed src/crypto/openssl/dep/gen.pl Removed src/crypto/openssl/dep/ssl.txt Removed src/crypto/openssl/doc/apps/ca.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/apps/crl2pkcs7.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/apps/enc.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/apps/openssl.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/apps/rsautl.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/apps/s_server.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/apps/smime.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/apps/verify.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto.pod Removed src/crypto/openssl/doc/crypto/BN_bn2bin.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/BN_rand.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/DH_get_ex_new_index.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/crypto/EVP_DigestInit.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/EVP_EncryptInit.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/EVP_SignInit.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/EVP_VerifyInit.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/RSA_check_key.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/crypto/RSA_generate_key.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/crypto/bio.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/crypto/blowfish.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/bn.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/crypto.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/des_modes.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/err.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/rand.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/rsa.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/crypto/threads.pod 1.1.1.1.2.2.8.1 src/crypto/openssl/doc/openssl.pod Removed src/crypto/openssl/doc/ssl.pod Removed src/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_ctrl.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_free.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_get_ex_new_index.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_load_verify_locations.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_new.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_get_cb.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod 1.1.1.2.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_verify_callback.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_cert_cb.pod 1.1.1.2.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_default_passwd_cb.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_info_callback.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_mode.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_quiet_shutdown.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_session_cache_mode.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_timeout.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_SESSION_free.pod 1.1.1.1.2.1.8.1 src/crypto/openssl/doc/ssl/SSL_SESSION_get_ex_new_index.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_SESSION_get_time.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_accept.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_alert_type_string.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_clear.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_connect.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_do_handshake.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_get_SSL_CTX.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_get_client_CA_list.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_get_default_timeout.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_get_error.pod 1.1.1.1.2.3.6.1 src/crypto/openssl/doc/ssl/SSL_get_ex_new_index.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_get_peer_certificate.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_get_session.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_new.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_read.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_rstate_string.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_session_reused.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_set_connect_state.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_set_session.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_set_shutdown.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_shutdown.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/SSL_state_string.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_want.pod 1.1.1.1.4.1 src/crypto/openssl/doc/ssl/SSL_write.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/ssl/d2i_SSL_SESSION.pod 1.1.1.2.2.1.6.1 src/crypto/openssl/doc/ssl/ssl.pod 1.1.1.1.2.3.6.1 src/crypto/openssl/doc/ssleay.txt 1.1.1.1.2.2.6.1 src/crypto/openssl/e_os.h 1.1.1.1.2.3.6.1 src/crypto/openssl/e_os2.h 1.1.1.1.2.1.8.1 src/crypto/openssl/mt/README Removed src/crypto/openssl/mt/mttest.c Removed src/crypto/openssl/mt/profile.sh Removed src/crypto/openssl/mt/pthread.sh Removed src/crypto/openssl/mt/purify.sh Removed src/crypto/openssl/mt/solaris.sh Removed src/crypto/openssl/openssl.spec 1.1.1.1.2.2.6.1 src/crypto/openssl/shlib/Makefile.hpux10-cc Removed src/crypto/openssl/shlib/hpux10-cc.sh Removed src/crypto/openssl/shlib/irix.sh Removed src/crypto/openssl/shlib/solaris-sc4.sh Removed src/crypto/openssl/shlib/solaris.sh Removed src/crypto/openssl/shlib/sun.sh Removed src/crypto/openssl/ssl/Makefile.save Removed src/crypto/openssl/ssl/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/s23_clnt.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s23_pkt.c 1.1.1.1.2.1.8.1 src/crypto/openssl/ssl/s23_srvr.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s2_clnt.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s2_enc.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s2_lib.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s2_pkt.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s2_srvr.c 1.2.2.3.6.1 src/crypto/openssl/ssl/s3_both.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/s3_clnt.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/s3_enc.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/s3_lib.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/s3_pkt.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl.h 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl2.h 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl3.h 1.1.1.1.2.2.8.1 src/crypto/openssl/ssl/ssl_asn1.c 1.1.1.1.2.2.8.1 src/crypto/openssl/ssl/ssl_cert.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl_err.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl_lib.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl_locl.h 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl_sess.c 1.1.1.1.2.3.6.1 src/crypto/openssl/ssl/ssl_stat.c 1.1.1.1.2.1.8.1 src/crypto/openssl/ssl/ssltest.c 1.1.1.1.2.2.8.1 src/crypto/openssl/ssl/t1_enc.c 1.1.1.1.2.3.6.1 src/crypto/openssl/test/Makefile.save Removed src/crypto/openssl/test/Makefile.ssl 1.1.1.1.2.3.6.1 src/crypto/openssl/test/bctest 1.1.1.2.2.1.6.1 src/crypto/openssl/test/dsa-ca.pem Removed src/crypto/openssl/test/dsa-pca.pem Removed src/crypto/openssl/test/testss 1.1.1.1.2.1.8.1 src/crypto/openssl/tools/c89.sh 1.1.1.1.4.1 src/crypto/openssl/tools/c_rehash 1.1.1.1.2.2.6.1 src/crypto/openssl/util/dirname.pl 1.1.1.1.4.1 src/crypto/openssl/util/domd 1.1.1.1.2.1.8.1 src/crypto/openssl/util/libeay.num 1.1.1.1.2.3.6.1 src/crypto/openssl/util/mk1mf.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/util/mkdef.pl 1.1.1.1.2.3.6.1 src/crypto/openssl/util/mkerr.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/util/pl/BC-32.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/util/pl/VC-32.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/util/pod2man.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/util/pod2mantest 1.1.1.1.4.1 src/crypto/openssl/util/pod2mantest.pod 1.1.1.1.4.1 src/crypto/openssl/util/selftest.pl 1.1.1.1.2.2.8.1 src/crypto/openssl/util/sep_lib.sh Removed src/crypto/openssl/util/ssleay.num 1.1.1.1.2.2.8.1 src/secure/lib/libcrypto/Makefile 1.15.2.11.6.1 src/secure/lib/libcrypto/des_crypt.3 1.1.1.2.10.1 src/secure/lib/libcrypto/opensslconf-alpha.h 1.1.2.2.6.1 src/sys/conf/newvers.sh 1.44.2.23.2.8 RELENG_4_5 src/crypto/openssl/CHANGES 1.1.1.1.2.2.4.1 src/crypto/openssl/Configure 1.1.1.1.2.2.4.1 src/crypto/openssl/FAQ 1.1.1.1.2.3.4.1 src/crypto/openssl/FREEBSD-Xlist 1.1.2.2.4.1 src/crypto/openssl/INSTALL 1.1.1.1.2.2.6.1 src/crypto/openssl/LICENSE 1.1.1.1.2.2.4.1 src/crypto/openssl/Makefile.org 1.1.1.1.2.3.4.1 src/crypto/openssl/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/NEWS 1.1.1.1.2.3.4.1 src/crypto/openssl/README 1.1.1.1.2.3.4.1 src/crypto/openssl/README.ENGINE 1.1.1.1.2.1.6.1 src/crypto/openssl/STATUS Removed src/crypto/openssl/TABLE Removed src/crypto/openssl/apps/CA.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/Makefile.save Removed src/crypto/openssl/apps/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/apps/apps.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/asn1pars.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/ca.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/der_chop 1.1.1.1.2.1.6.1 src/crypto/openssl/apps/dgst.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/dsaparam.c 1.1.1.1.2.3.4.1 src/crypto/openssl/apps/eay.c Removed src/crypto/openssl/apps/enc.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/openssl.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/pem_mail.c Removed src/crypto/openssl/apps/pkcs12.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/pkcs7.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/req.c 1.1.1.1.2.3.4.1 src/crypto/openssl/apps/rsa/01.pem Removed src/crypto/openssl/apps/rsa/1.txt Removed src/crypto/openssl/apps/rsa/SecureServer.pem Removed src/crypto/openssl/apps/rsa/s.txt Removed src/crypto/openssl/apps/s_client.c 1.1.1.1.2.3.4.1 src/crypto/openssl/apps/s_time.c 1.1.1.1.2.1.6.1 src/crypto/openssl/apps/smime.c 1.1.1.1.2.2.6.1 src/crypto/openssl/apps/speed.c 1.3.2.3.4.1 src/crypto/openssl/apps/tkca Removed src/crypto/openssl/apps/x509.c 1.1.1.1.2.3.4.1 src/crypto/openssl/certs/rsa-ssca.pem Removed src/crypto/openssl/config 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/Makefile.save Removed src/crypto/openssl/crypto/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/asn1/Makefile.save Removed src/crypto/openssl/crypto/asn1/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/asn1/a_bitstr.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/a_enum.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/a_gentm.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/a_int.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/a_set.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/asn1/a_sign.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/a_strnid.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/asn1/a_time.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/a_utctm.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/asn1.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/asn1_lib.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/asn1/d2i_dhp.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/asn1/d2i_dsap.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/d2i_r_pr.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/asn1/pkcs8.c Removed src/crypto/openssl/crypto/asn1/t_pkey.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/t_x509.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/asn1/x_pubkey.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bf/Makefile.save Removed src/crypto/openssl/crypto/bf/Makefile.uni Removed src/crypto/openssl/crypto/bio/Makefile.save Removed src/crypto/openssl/crypto/bio/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/bio/b_print.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bio/b_sock.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/bio/bf_buff.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bio/bf_lbuf.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/bio/bf_nbio.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bio/bio.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bio/bss_bio.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bio/bss_log.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bn/Makefile.save Removed src/crypto/openssl/crypto/bn/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/bn/asm/mips3.s 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bn/bn.h 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/bn/bn_comba.c Removed src/crypto/openssl/crypto/bn/bn_div.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/bn/bn_gcd.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/bn/bn_mont.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bn/bn_mul.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bn/bn_opts.c Removed src/crypto/openssl/crypto/bn/bn_prime.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/bn/bn_rand.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/bn/bn_sqr.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/bn/comba.pl Removed src/crypto/openssl/crypto/bn/d.c Removed src/crypto/openssl/crypto/bn/new Removed src/crypto/openssl/crypto/bn/old/b_sqr.c Removed src/crypto/openssl/crypto/bn/old/bn_com.c Removed src/crypto/openssl/crypto/bn/old/bn_high.c Removed src/crypto/openssl/crypto/bn/old/bn_ka.c Removed src/crypto/openssl/crypto/bn/old/bn_low.c Removed src/crypto/openssl/crypto/bn/old/bn_m.c Removed src/crypto/openssl/crypto/bn/old/bn_mul.c.works Removed src/crypto/openssl/crypto/bn/old/bn_wmul.c Removed src/crypto/openssl/crypto/bn/old/build Removed src/crypto/openssl/crypto/bn/old/info Removed src/crypto/openssl/crypto/bn/old/test.works Removed src/crypto/openssl/crypto/buffer/Makefile.save Removed src/crypto/openssl/crypto/buffer/buffer.h 1.1.1.1.8.1 src/crypto/openssl/crypto/cast/Makefile.save Removed src/crypto/openssl/crypto/cast/Makefile.uni Removed src/crypto/openssl/crypto/comp/Makefile.save Removed src/crypto/openssl/crypto/comp/Makefile.ssl 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/comp/comp.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/conf/Makefile.save Removed src/crypto/openssl/crypto/conf/Makefile.ssl 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/conf/conf.c Removed src/crypto/openssl/crypto/conf/conf.h 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/conf/conf_api.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/conf/conf_def.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/conf/conf_def.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/conf/conf_lcl.h Removed src/crypto/openssl/crypto/conf/keysets.pl 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/cryptlib.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/cryptlib.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/crypto.h 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/des/DES.pod Removed src/crypto/openssl/crypto/des/MODES.DES Removed src/crypto/openssl/crypto/des/Makefile.PL Removed src/crypto/openssl/crypto/des/Makefile.lit Removed src/crypto/openssl/crypto/des/Makefile.save Removed src/crypto/openssl/crypto/des/Makefile.uni Removed src/crypto/openssl/crypto/des/PC1 Removed src/crypto/openssl/crypto/des/PC2 Removed src/crypto/openssl/crypto/des/des.h 1.2.2.3.4.1 src/crypto/openssl/crypto/des/des.man Removed src/crypto/openssl/crypto/des/des.pl Removed src/crypto/openssl/crypto/des/des_crypt.man Removed src/crypto/openssl/crypto/des/doIP Removed src/crypto/openssl/crypto/des/doPC1 Removed src/crypto/openssl/crypto/des/doPC2 Removed src/crypto/openssl/crypto/des/fcrypt.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/des/podd.h Removed src/crypto/openssl/crypto/des/read_pwd.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/des/shifts.pl Removed src/crypto/openssl/crypto/des/sk.h Removed src/crypto/openssl/crypto/des/supp.c Removed src/crypto/openssl/crypto/des/testdes.pl Removed src/crypto/openssl/crypto/dh/Makefile.save Removed src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/dh/dh_gen.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/dh/dh_lib.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/dh/dhtest.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/dsa/Makefile.save Removed src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/dsa/dsa_asn1.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/dsa/dsa_lib.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/dso/dso.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/dso/dso_dlfcn.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/ebcdic.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/err/Makefile.save Removed src/crypto/openssl/crypto/err/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/err/err.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/err/err.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/evp/Makefile.save Removed src/crypto/openssl/crypto/evp/bio_b64.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/evp/bio_enc.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/evp/c_allc.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/evp/c_alld.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/evp/e_bf.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/evp/e_cbc_3d.c Removed src/crypto/openssl/crypto/evp/e_cbc_bf.c Removed src/crypto/openssl/crypto/evp/e_cbc_c.c Removed src/crypto/openssl/crypto/evp/e_cbc_d.c Removed src/crypto/openssl/crypto/evp/e_cbc_i.c Removed src/crypto/openssl/crypto/evp/e_cbc_r2.c Removed src/crypto/openssl/crypto/evp/e_cbc_r5.c Removed src/crypto/openssl/crypto/evp/e_cfb_3d.c Removed src/crypto/openssl/crypto/evp/e_cfb_bf.c Removed src/crypto/openssl/crypto/evp/e_cfb_c.c Removed src/crypto/openssl/crypto/evp/e_cfb_d.c Removed src/crypto/openssl/crypto/evp/e_cfb_i.c Removed src/crypto/openssl/crypto/evp/e_cfb_r2.c Removed src/crypto/openssl/crypto/evp/e_cfb_r5.c Removed src/crypto/openssl/crypto/evp/e_ecb_3d.c Removed src/crypto/openssl/crypto/evp/e_ecb_bf.c Removed src/crypto/openssl/crypto/evp/e_ecb_c.c Removed src/crypto/openssl/crypto/evp/e_ecb_d.c Removed src/crypto/openssl/crypto/evp/e_ecb_i.c Removed src/crypto/openssl/crypto/evp/e_ecb_r2.c Removed src/crypto/openssl/crypto/evp/e_ecb_r5.c Removed src/crypto/openssl/crypto/evp/e_ofb_3d.c Removed src/crypto/openssl/crypto/evp/e_ofb_bf.c Removed src/crypto/openssl/crypto/evp/e_ofb_c.c Removed src/crypto/openssl/crypto/evp/e_ofb_d.c Removed src/crypto/openssl/crypto/evp/e_ofb_i.c Removed src/crypto/openssl/crypto/evp/e_ofb_r2.c Removed src/crypto/openssl/crypto/evp/e_ofb_r5.c Removed src/crypto/openssl/crypto/evp/encode.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/evp/evp.h 1.2.2.3.4.1 src/crypto/openssl/crypto/evp/evp_key.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/evp/m_md4.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/hmac/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.uni Removed src/crypto/openssl/crypto/lhash/Makefile.save Removed src/crypto/openssl/crypto/lhash/lh_test.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/md2/Makefile.save Removed src/crypto/openssl/crypto/md2/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/md32_common.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/md4/md4_locl.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/md5/Makefile.save Removed src/crypto/openssl/crypto/md5/Makefile.uni Removed src/crypto/openssl/crypto/md5/md5_locl.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/mdc2/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/objects/o_names.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/objects/obj_dat.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/objects/obj_dat.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/objects/obj_dat.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/objects/obj_mac.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/objects/obj_mac.num 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/objects/objects.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/objects/objects.pl 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/objects/objects.txt 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/opensslv.h 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/pem/Makefile.save Removed src/crypto/openssl/crypto/pem/pem.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/pem/pem2.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/pem/pem_info.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/pem/pem_lib.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/perlasm/x86nasm.pl 1.1.1.1.8.1 src/crypto/openssl/crypto/perlasm/x86unix.pl 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/pkcs12/Makefile.save Removed src/crypto/openssl/crypto/pkcs12/pkcs12.h 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/pkcs7/Makefile.save Removed src/crypto/openssl/crypto/pkcs7/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/pkcs7/README Removed src/crypto/openssl/crypto/pkcs7/pk7_attr.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/pkcs7/pk7_doit.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/pkcs7/pkcs7.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/pkcs7/verify.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/rand/Makefile.save Removed src/crypto/openssl/crypto/rand/md_rand.c 1.1.1.1.2.4.4.1 src/crypto/openssl/crypto/rand/rand.h 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/rand/rand_egd.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/rand/rand_win.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/rand/randfile.c 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/rc2/Makefile.save Removed src/crypto/openssl/crypto/rc2/Makefile.uni Removed src/crypto/openssl/crypto/rc4/Makefile.save Removed src/crypto/openssl/crypto/rc4/Makefile.uni Removed src/crypto/openssl/crypto/rc5/Makefile.save Removed src/crypto/openssl/crypto/rc5/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/Makefile.save Removed src/crypto/openssl/crypto/ripemd/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/rmd_locl.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/rsa/Makefile.save Removed src/crypto/openssl/crypto/rsa/rsa.h 1.2.2.4.4.1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.2.4.2.4.1 src/crypto/openssl/crypto/rsa/rsa_err.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/rsa/rsa_oaep.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/rsa/rsa_oaep_test.c Removed src/crypto/openssl/crypto/sha/Makefile.save Removed src/crypto/openssl/crypto/sha/Makefile.uni Removed src/crypto/openssl/crypto/sha/sha_locl.h 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/stack/Makefile.save Removed src/crypto/openssl/crypto/tmdiff.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/txt_db/Makefile.save Removed src/crypto/openssl/crypto/txt_db/txt_db.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509/Makefile.save Removed src/crypto/openssl/crypto/x509/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/x509/x509.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509/x509_obj.c 1.1.1.1.2.1.6.1 src/crypto/openssl/crypto/x509/x509_trs.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509/x509_txt.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509/x509_vfy.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509/x509_vfy.h 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509v3/Makefile.save Removed src/crypto/openssl/crypto/x509v3/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/crypto/x509v3/README Removed src/crypto/openssl/crypto/x509v3/v3_ia5.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509v3/v3_utl.c 1.1.1.1.2.2.6.1 src/crypto/openssl/crypto/x509v3/x509v3.h 1.1.1.1.2.2.6.1 src/crypto/openssl/demos/b64.c 1.1.1.1.2.1.6.1 src/crypto/openssl/demos/maurice/example1.c 1.1.1.1.8.1 src/crypto/openssl/demos/maurice/loadkeys.c 1.1.1.1.8.1 src/crypto/openssl/dep/crypto.txt Removed src/crypto/openssl/dep/files Removed src/crypto/openssl/dep/gen.pl Removed src/crypto/openssl/dep/ssl.txt Removed src/crypto/openssl/doc/apps/ca.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/apps/crl2pkcs7.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/apps/enc.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/apps/openssl.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/apps/rsautl.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/apps/s_server.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/apps/smime.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/apps/verify.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto.pod Removed src/crypto/openssl/doc/crypto/BN_bn2bin.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/BN_rand.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/DH_get_ex_new_index.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/crypto/EVP_DigestInit.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/EVP_EncryptInit.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/EVP_SignInit.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/EVP_VerifyInit.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/RSA_check_key.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/crypto/RSA_generate_key.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/crypto/bio.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/crypto/blowfish.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/bn.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/crypto.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/des_modes.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/err.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/rand.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/rsa.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/crypto/threads.pod 1.1.1.1.2.2.6.1 src/crypto/openssl/doc/openssl.pod Removed src/crypto/openssl/doc/ssl.pod Removed src/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_ctrl.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_free.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_get_ex_new_index.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_load_verify_locations.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_new.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_get_cb.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod 1.1.1.2.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_verify_callback.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_cert_cb.pod 1.1.1.2.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_default_passwd_cb.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_info_callback.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_mode.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_quiet_shutdown.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_session_cache_mode.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_timeout.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_SESSION_free.pod 1.1.1.1.2.1.6.1 src/crypto/openssl/doc/ssl/SSL_SESSION_get_ex_new_index.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_SESSION_get_time.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_accept.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_alert_type_string.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_clear.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_connect.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_do_handshake.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_get_SSL_CTX.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_get_client_CA_list.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_get_default_timeout.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_get_error.pod 1.1.1.1.2.3.4.1 src/crypto/openssl/doc/ssl/SSL_get_ex_new_index.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_get_peer_certificate.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_get_session.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_new.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_read.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_rstate_string.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_session_reused.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_set_connect_state.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_set_session.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_set_shutdown.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_shutdown.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/SSL_state_string.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_want.pod 1.1.1.1.6.1 src/crypto/openssl/doc/ssl/SSL_write.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/ssl/d2i_SSL_SESSION.pod 1.1.1.2.2.1.4.1 src/crypto/openssl/doc/ssl/ssl.pod 1.1.1.1.2.3.4.1 src/crypto/openssl/doc/ssleay.txt 1.1.1.1.2.2.4.1 src/crypto/openssl/e_os.h 1.1.1.1.2.3.4.1 src/crypto/openssl/e_os2.h 1.1.1.1.2.1.6.1 src/crypto/openssl/mt/README Removed src/crypto/openssl/mt/mttest.c Removed src/crypto/openssl/mt/profile.sh Removed src/crypto/openssl/mt/pthread.sh Removed src/crypto/openssl/mt/purify.sh Removed src/crypto/openssl/mt/solaris.sh Removed src/crypto/openssl/openssl.spec 1.1.1.1.2.2.4.1 src/crypto/openssl/shlib/Makefile.hpux10-cc Removed src/crypto/openssl/shlib/hpux10-cc.sh Removed src/crypto/openssl/shlib/irix.sh Removed src/crypto/openssl/shlib/solaris-sc4.sh Removed src/crypto/openssl/shlib/solaris.sh Removed src/crypto/openssl/shlib/sun.sh Removed src/crypto/openssl/ssl/Makefile.save Removed src/crypto/openssl/ssl/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/s23_clnt.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s23_pkt.c 1.1.1.1.2.1.6.1 src/crypto/openssl/ssl/s23_srvr.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s2_clnt.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s2_enc.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s2_lib.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s2_pkt.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s2_srvr.c 1.2.2.3.4.1 src/crypto/openssl/ssl/s3_both.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/s3_clnt.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/s3_enc.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/s3_lib.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/s3_pkt.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl.h 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl2.h 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl3.h 1.1.1.1.2.2.6.1 src/crypto/openssl/ssl/ssl_asn1.c 1.1.1.1.2.2.6.1 src/crypto/openssl/ssl/ssl_cert.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl_err.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl_lib.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl_locl.h 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl_sess.c 1.1.1.1.2.3.4.1 src/crypto/openssl/ssl/ssl_stat.c 1.1.1.1.2.1.6.1 src/crypto/openssl/ssl/ssltest.c 1.1.1.1.2.2.6.1 src/crypto/openssl/ssl/t1_enc.c 1.1.1.1.2.3.4.1 src/crypto/openssl/test/Makefile.save Removed src/crypto/openssl/test/Makefile.ssl 1.1.1.1.2.3.4.1 src/crypto/openssl/test/bctest 1.1.1.2.2.1.4.1 src/crypto/openssl/test/dsa-ca.pem Removed src/crypto/openssl/test/dsa-pca.pem Removed src/crypto/openssl/test/testss 1.1.1.1.2.1.6.1 src/crypto/openssl/tools/c89.sh 1.1.1.1.6.1 src/crypto/openssl/tools/c_rehash 1.1.1.1.2.2.4.1 src/crypto/openssl/util/dirname.pl 1.1.1.1.6.1 src/crypto/openssl/util/domd 1.1.1.1.2.1.6.1 src/crypto/openssl/util/libeay.num 1.1.1.1.2.3.4.1 src/crypto/openssl/util/mk1mf.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/util/mkdef.pl 1.1.1.1.2.3.4.1 src/crypto/openssl/util/mkerr.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/util/pl/BC-32.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/util/pl/VC-32.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/util/pod2man.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/util/pod2mantest 1.1.1.1.6.1 src/crypto/openssl/util/pod2mantest.pod 1.1.1.1.6.1 src/crypto/openssl/util/selftest.pl 1.1.1.1.2.2.6.1 src/crypto/openssl/util/sep_lib.sh Removed src/crypto/openssl/util/ssleay.num 1.1.1.1.2.2.6.1 src/secure/lib/libcrypto/Makefile 1.15.2.11.4.1 src/secure/lib/libcrypto/des_crypt.3 1.1.1.2.8.1 src/secure/lib/libcrypto/opensslconf-alpha.h 1.1.2.2.4.1 src/sys/conf/newvers.sh 1.44.2.20.2.14 RELENG_4_4 src/crypto/openssl/CHANGES 1.1.1.1.2.2.2.1 src/crypto/openssl/Configure 1.1.1.1.2.2.2.1 src/crypto/openssl/FAQ 1.1.1.1.2.3.2.1 src/crypto/openssl/FREEBSD-Xlist 1.1.2.2.2.1 src/crypto/openssl/INSTALL 1.1.1.1.2.2.4.1 src/crypto/openssl/LICENSE 1.1.1.1.2.2.2.1 src/crypto/openssl/Makefile.org 1.1.1.1.2.3.2.1 src/crypto/openssl/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/NEWS 1.1.1.1.2.3.2.1 src/crypto/openssl/README 1.1.1.1.2.3.2.1 src/crypto/openssl/README.ENGINE 1.1.1.1.2.1.4.1 src/crypto/openssl/STATUS Removed src/crypto/openssl/TABLE Removed src/crypto/openssl/apps/CA.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/Makefile.save Removed src/crypto/openssl/apps/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/apps/apps.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/asn1pars.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/ca.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/der_chop 1.1.1.1.2.1.4.1 src/crypto/openssl/apps/dgst.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/dsaparam.c 1.1.1.1.2.3.2.1 src/crypto/openssl/apps/eay.c Removed src/crypto/openssl/apps/enc.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/openssl.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/pem_mail.c Removed src/crypto/openssl/apps/pkcs12.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/pkcs7.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/req.c 1.1.1.1.2.3.2.1 src/crypto/openssl/apps/rsa/01.pem Removed src/crypto/openssl/apps/rsa/1.txt Removed src/crypto/openssl/apps/rsa/SecureServer.pem Removed src/crypto/openssl/apps/rsa/s.txt Removed src/crypto/openssl/apps/s_client.c 1.1.1.1.2.3.2.1 src/crypto/openssl/apps/s_time.c 1.1.1.1.2.1.4.1 src/crypto/openssl/apps/smime.c 1.1.1.1.2.2.4.1 src/crypto/openssl/apps/speed.c 1.3.2.3.2.1 src/crypto/openssl/apps/tkca Removed src/crypto/openssl/apps/x509.c 1.1.1.1.2.3.2.1 src/crypto/openssl/certs/rsa-ssca.pem Removed src/crypto/openssl/config 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/Makefile.save Removed src/crypto/openssl/crypto/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/asn1/Makefile.save Removed src/crypto/openssl/crypto/asn1/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/asn1/a_bitstr.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/a_enum.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/a_gentm.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/a_int.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/a_set.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/asn1/a_sign.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/a_strnid.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/asn1/a_time.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/a_utctm.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/asn1.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/asn1_lib.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/asn1/d2i_dhp.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/asn1/d2i_dsap.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/d2i_r_pr.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/asn1/pkcs8.c Removed src/crypto/openssl/crypto/asn1/t_pkey.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/t_x509.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/asn1/x_pubkey.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bf/Makefile.save Removed src/crypto/openssl/crypto/bf/Makefile.uni Removed src/crypto/openssl/crypto/bio/Makefile.save Removed src/crypto/openssl/crypto/bio/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/bio/b_print.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bio/b_sock.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/bio/bf_buff.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bio/bf_lbuf.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/bio/bf_nbio.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bio/bio.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bio/bss_bio.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bio/bss_log.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bn/Makefile.save Removed src/crypto/openssl/crypto/bn/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/bn/asm/mips3.s 1.1.1.1.2.2.2.1 src/crypto/openssl/crypto/bn/bn.h 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/bn/bn_comba.c Removed src/crypto/openssl/crypto/bn/bn_div.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/bn/bn_gcd.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/bn/bn_mont.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bn/bn_mul.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bn/bn_opts.c Removed src/crypto/openssl/crypto/bn/bn_prime.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/bn/bn_rand.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/bn/bn_sqr.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/bn/comba.pl Removed src/crypto/openssl/crypto/bn/d.c Removed src/crypto/openssl/crypto/bn/new Removed src/crypto/openssl/crypto/bn/old/b_sqr.c Removed src/crypto/openssl/crypto/bn/old/bn_com.c Removed src/crypto/openssl/crypto/bn/old/bn_high.c Removed src/crypto/openssl/crypto/bn/old/bn_ka.c Removed src/crypto/openssl/crypto/bn/old/bn_low.c Removed src/crypto/openssl/crypto/bn/old/bn_m.c Removed src/crypto/openssl/crypto/bn/old/bn_mul.c.works Removed src/crypto/openssl/crypto/bn/old/bn_wmul.c Removed src/crypto/openssl/crypto/bn/old/build Removed src/crypto/openssl/crypto/bn/old/info Removed src/crypto/openssl/crypto/bn/old/test.works Removed src/crypto/openssl/crypto/buffer/Makefile.save Removed src/crypto/openssl/crypto/buffer/buffer.h 1.1.1.1.6.1 src/crypto/openssl/crypto/cast/Makefile.save Removed src/crypto/openssl/crypto/cast/Makefile.uni Removed src/crypto/openssl/crypto/comp/Makefile.save Removed src/crypto/openssl/crypto/comp/Makefile.ssl 1.1.1.1.2.2.2.1 src/crypto/openssl/crypto/comp/comp.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/conf/Makefile.save Removed src/crypto/openssl/crypto/conf/Makefile.ssl 1.1.1.1.2.2.2.1 src/crypto/openssl/crypto/conf/conf.c Removed src/crypto/openssl/crypto/conf/conf.h 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/conf/conf_api.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/conf/conf_def.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/conf/conf_def.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/conf/conf_lcl.h Removed src/crypto/openssl/crypto/conf/keysets.pl 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/cryptlib.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/cryptlib.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/crypto.h 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/des/DES.pod Removed src/crypto/openssl/crypto/des/MODES.DES Removed src/crypto/openssl/crypto/des/Makefile.PL Removed src/crypto/openssl/crypto/des/Makefile.lit Removed src/crypto/openssl/crypto/des/Makefile.save Removed src/crypto/openssl/crypto/des/Makefile.uni Removed src/crypto/openssl/crypto/des/PC1 Removed src/crypto/openssl/crypto/des/PC2 Removed src/crypto/openssl/crypto/des/des.h 1.2.2.3.2.1 src/crypto/openssl/crypto/des/des.man Removed src/crypto/openssl/crypto/des/des.pl Removed src/crypto/openssl/crypto/des/des_crypt.man Removed src/crypto/openssl/crypto/des/doIP Removed src/crypto/openssl/crypto/des/doPC1 Removed src/crypto/openssl/crypto/des/doPC2 Removed src/crypto/openssl/crypto/des/fcrypt.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/des/podd.h Removed src/crypto/openssl/crypto/des/read_pwd.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/des/shifts.pl Removed src/crypto/openssl/crypto/des/sk.h Removed src/crypto/openssl/crypto/des/supp.c Removed src/crypto/openssl/crypto/des/testdes.pl Removed src/crypto/openssl/crypto/dh/Makefile.save Removed src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/dh/dh_gen.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/dh/dh_lib.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/dh/dhtest.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/dsa/Makefile.save Removed src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/dsa/dsa_asn1.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/dsa/dsa_lib.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/dso/dso.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/dso/dso_dlfcn.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/ebcdic.c 1.1.1.1.2.2.2.1 src/crypto/openssl/crypto/err/Makefile.save Removed src/crypto/openssl/crypto/err/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/err/err.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/err/err.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/evp/Makefile.save Removed src/crypto/openssl/crypto/evp/bio_b64.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/evp/bio_enc.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/evp/c_allc.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/evp/c_alld.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/evp/e_bf.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/evp/e_cbc_3d.c Removed src/crypto/openssl/crypto/evp/e_cbc_bf.c Removed src/crypto/openssl/crypto/evp/e_cbc_c.c Removed src/crypto/openssl/crypto/evp/e_cbc_d.c Removed src/crypto/openssl/crypto/evp/e_cbc_i.c Removed src/crypto/openssl/crypto/evp/e_cbc_r2.c Removed src/crypto/openssl/crypto/evp/e_cbc_r5.c Removed src/crypto/openssl/crypto/evp/e_cfb_3d.c Removed src/crypto/openssl/crypto/evp/e_cfb_bf.c Removed src/crypto/openssl/crypto/evp/e_cfb_c.c Removed src/crypto/openssl/crypto/evp/e_cfb_d.c Removed src/crypto/openssl/crypto/evp/e_cfb_i.c Removed src/crypto/openssl/crypto/evp/e_cfb_r2.c Removed src/crypto/openssl/crypto/evp/e_cfb_r5.c Removed src/crypto/openssl/crypto/evp/e_ecb_3d.c Removed src/crypto/openssl/crypto/evp/e_ecb_bf.c Removed src/crypto/openssl/crypto/evp/e_ecb_c.c Removed src/crypto/openssl/crypto/evp/e_ecb_d.c Removed src/crypto/openssl/crypto/evp/e_ecb_i.c Removed src/crypto/openssl/crypto/evp/e_ecb_r2.c Removed src/crypto/openssl/crypto/evp/e_ecb_r5.c Removed src/crypto/openssl/crypto/evp/e_ofb_3d.c Removed src/crypto/openssl/crypto/evp/e_ofb_bf.c Removed src/crypto/openssl/crypto/evp/e_ofb_c.c Removed src/crypto/openssl/crypto/evp/e_ofb_d.c Removed src/crypto/openssl/crypto/evp/e_ofb_i.c Removed src/crypto/openssl/crypto/evp/e_ofb_r2.c Removed src/crypto/openssl/crypto/evp/e_ofb_r5.c Removed src/crypto/openssl/crypto/evp/encode.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/evp/evp.h 1.2.2.3.2.1 src/crypto/openssl/crypto/evp/evp_key.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/evp/m_md4.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/hmac/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.save Removed src/crypto/openssl/crypto/idea/Makefile.uni Removed src/crypto/openssl/crypto/lhash/Makefile.save Removed src/crypto/openssl/crypto/lhash/lh_test.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/md2/Makefile.save Removed src/crypto/openssl/crypto/md2/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/md32_common.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/md4/md4_locl.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/md5/Makefile.save Removed src/crypto/openssl/crypto/md5/Makefile.uni Removed src/crypto/openssl/crypto/md5/md5_locl.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/mdc2/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.save Removed src/crypto/openssl/crypto/objects/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/objects/o_names.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/objects/obj_dat.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/objects/obj_dat.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/objects/obj_dat.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/objects/obj_mac.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/objects/obj_mac.num 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/objects/objects.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/objects/objects.pl 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/objects/objects.txt 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/opensslv.h 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/pem/Makefile.save Removed src/crypto/openssl/crypto/pem/pem.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/pem/pem2.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/pem/pem_info.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/pem/pem_lib.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/perlasm/x86nasm.pl 1.1.1.1.6.1 src/crypto/openssl/crypto/perlasm/x86unix.pl 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/pkcs12/Makefile.save Removed src/crypto/openssl/crypto/pkcs12/pkcs12.h 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/pkcs7/Makefile.save Removed src/crypto/openssl/crypto/pkcs7/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/pkcs7/README Removed src/crypto/openssl/crypto/pkcs7/pk7_attr.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/pkcs7/pk7_doit.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/pkcs7/pkcs7.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/pkcs7/verify.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/rand/Makefile.save Removed src/crypto/openssl/crypto/rand/md_rand.c 1.1.1.1.2.4.2.1 src/crypto/openssl/crypto/rand/rand.h 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/rand/rand_egd.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/rand/rand_win.c 1.1.1.1.2.2.2.1 src/crypto/openssl/crypto/rand/randfile.c 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/rc2/Makefile.save Removed src/crypto/openssl/crypto/rc2/Makefile.uni Removed src/crypto/openssl/crypto/rc4/Makefile.save Removed src/crypto/openssl/crypto/rc4/Makefile.uni Removed src/crypto/openssl/crypto/rc5/Makefile.save Removed src/crypto/openssl/crypto/rc5/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/Makefile.save Removed src/crypto/openssl/crypto/ripemd/Makefile.uni Removed src/crypto/openssl/crypto/ripemd/rmd_locl.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/rsa/Makefile.save Removed src/crypto/openssl/crypto/rsa/rsa.h 1.2.2.4.2.1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.2.4.2.2.1 src/crypto/openssl/crypto/rsa/rsa_err.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/rsa/rsa_oaep.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/rsa/rsa_oaep_test.c Removed src/crypto/openssl/crypto/sha/Makefile.save Removed src/crypto/openssl/crypto/sha/Makefile.uni Removed src/crypto/openssl/crypto/sha/sha_locl.h 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/stack/Makefile.save Removed src/crypto/openssl/crypto/tmdiff.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/txt_db/Makefile.save Removed src/crypto/openssl/crypto/txt_db/txt_db.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509/Makefile.save Removed src/crypto/openssl/crypto/x509/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/x509/x509.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509/x509_obj.c 1.1.1.1.2.1.4.1 src/crypto/openssl/crypto/x509/x509_trs.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509/x509_txt.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509/x509_vfy.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509/x509_vfy.h 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509v3/Makefile.save Removed src/crypto/openssl/crypto/x509v3/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/crypto/x509v3/README Removed src/crypto/openssl/crypto/x509v3/v3_ia5.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509v3/v3_utl.c 1.1.1.1.2.2.4.1 src/crypto/openssl/crypto/x509v3/x509v3.h 1.1.1.1.2.2.4.1 src/crypto/openssl/demos/b64.c 1.1.1.1.2.1.4.1 src/crypto/openssl/demos/maurice/example1.c 1.1.1.1.6.1 src/crypto/openssl/demos/maurice/loadkeys.c 1.1.1.1.6.1 src/crypto/openssl/dep/crypto.txt Removed src/crypto/openssl/dep/files Removed src/crypto/openssl/dep/gen.pl Removed src/crypto/openssl/dep/ssl.txt Removed src/crypto/openssl/doc/apps/ca.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/apps/crl2pkcs7.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/apps/enc.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/apps/openssl.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/apps/rsautl.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/apps/s_server.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/apps/smime.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/apps/verify.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto.pod Removed src/crypto/openssl/doc/crypto/BN_bn2bin.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/BN_rand.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/crypto/DH_get_ex_new_index.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/crypto/EVP_DigestInit.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/EVP_EncryptInit.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/EVP_SignInit.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/EVP_VerifyInit.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/RSA_check_key.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/crypto/RSA_generate_key.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/crypto/bio.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/crypto/blowfish.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/bn.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/crypto/crypto.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/des_modes.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/err.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/rand.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/crypto/rsa.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/crypto/threads.pod 1.1.1.1.2.2.4.1 src/crypto/openssl/doc/openssl.pod Removed src/crypto/openssl/doc/ssl.pod Removed src/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_ctrl.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_free.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_get_ex_new_index.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_load_verify_locations.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_new.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_sess_set_get_cb.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod 1.1.1.2.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_verify_callback.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_client_cert_cb.pod 1.1.1.2.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_default_passwd_cb.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_info_callback.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_mode.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_quiet_shutdown.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_session_cache_mode.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_timeout.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_SESSION_free.pod 1.1.1.1.2.1.4.1 src/crypto/openssl/doc/ssl/SSL_SESSION_get_ex_new_index.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_SESSION_get_time.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_accept.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_alert_type_string.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_clear.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_connect.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_do_handshake.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_get_SSL_CTX.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_get_client_CA_list.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_get_default_timeout.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_get_error.pod 1.1.1.1.2.3.2.1 src/crypto/openssl/doc/ssl/SSL_get_ex_new_index.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_get_peer_certificate.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_get_session.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_new.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_read.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_rstate_string.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_session_reused.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_set_connect_state.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_set_session.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_set_shutdown.pod 1.1.1.1.2.1.2.1 src/crypto/openssl/doc/ssl/SSL_shutdown.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/SSL_state_string.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_want.pod 1.1.1.1.8.1 src/crypto/openssl/doc/ssl/SSL_write.pod 1.1.1.1.2.2.2.1 src/crypto/openssl/doc/ssl/d2i_SSL_SESSION.pod 1.1.1.2.2.1.2.1 src/crypto/openssl/doc/ssl/ssl.pod 1.1.1.1.2.3.2.1 src/crypto/openssl/doc/ssleay.txt 1.1.1.1.2.2.2.1 src/crypto/openssl/e_os.h 1.1.1.1.2.3.2.1 src/crypto/openssl/e_os2.h 1.1.1.1.2.1.4.1 src/crypto/openssl/mt/README Removed src/crypto/openssl/mt/mttest.c Removed src/crypto/openssl/mt/profile.sh Removed src/crypto/openssl/mt/pthread.sh Removed src/crypto/openssl/mt/purify.sh Removed src/crypto/openssl/mt/solaris.sh Removed src/crypto/openssl/openssl.spec 1.1.1.1.2.2.2.1 src/crypto/openssl/shlib/Makefile.hpux10-cc Removed src/crypto/openssl/shlib/hpux10-cc.sh Removed src/crypto/openssl/shlib/irix.sh Removed src/crypto/openssl/shlib/solaris-sc4.sh Removed src/crypto/openssl/shlib/solaris.sh Removed src/crypto/openssl/shlib/sun.sh Removed src/crypto/openssl/ssl/Makefile.save Removed src/crypto/openssl/ssl/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/s23_clnt.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s23_pkt.c 1.1.1.1.2.1.4.1 src/crypto/openssl/ssl/s23_srvr.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s2_clnt.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s2_enc.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s2_lib.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s2_pkt.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s2_srvr.c 1.2.2.3.2.1 src/crypto/openssl/ssl/s3_both.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/s3_clnt.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/s3_enc.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/s3_lib.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/s3_pkt.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl.h 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl2.h 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl3.h 1.1.1.1.2.2.4.1 src/crypto/openssl/ssl/ssl_asn1.c 1.1.1.1.2.2.4.1 src/crypto/openssl/ssl/ssl_cert.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl_err.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl_lib.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl_locl.h 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl_sess.c 1.1.1.1.2.3.2.1 src/crypto/openssl/ssl/ssl_stat.c 1.1.1.1.2.1.4.1 src/crypto/openssl/ssl/ssltest.c 1.1.1.1.2.2.4.1 src/crypto/openssl/ssl/t1_enc.c 1.1.1.1.2.3.2.1 src/crypto/openssl/test/Makefile.save Removed src/crypto/openssl/test/Makefile.ssl 1.1.1.1.2.3.2.1 src/crypto/openssl/test/bctest 1.1.1.2.2.1.2.1 src/crypto/openssl/test/dsa-ca.pem Removed src/crypto/openssl/test/dsa-pca.pem Removed src/crypto/openssl/test/testss 1.1.1.1.2.1.4.1 src/crypto/openssl/tools/c89.sh 1.1.1.1.8.1 src/crypto/openssl/tools/c_rehash 1.1.1.1.2.2.2.1 src/crypto/openssl/util/dirname.pl 1.1.1.1.8.1 src/crypto/openssl/util/domd 1.1.1.1.2.1.4.1 src/crypto/openssl/util/libeay.num 1.1.1.1.2.3.2.1 src/crypto/openssl/util/mk1mf.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/util/mkdef.pl 1.1.1.1.2.3.2.1 src/crypto/openssl/util/mkerr.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/util/pl/BC-32.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/util/pl/VC-32.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/util/pod2man.pl 1.1.1.1.2.2.2.1 src/crypto/openssl/util/pod2mantest 1.1.1.1.8.1 src/crypto/openssl/util/pod2mantest.pod 1.1.1.1.8.1 src/crypto/openssl/util/selftest.pl 1.1.1.1.2.2.4.1 src/crypto/openssl/util/sep_lib.sh Removed src/crypto/openssl/util/ssleay.num 1.1.1.1.2.2.4.1 src/secure/lib/libcrypto/Makefile 1.15.2.11.2.1 src/secure/lib/libcrypto/des_crypt.3 1.1.1.2.6.1 src/secure/lib/libcrypto/opensslconf-alpha.h 1.1.2.2.2.1 src/sys/conf/newvers.sh 1.44.2.17.2.19 - ------------------------------------------------------------------------- VII. References -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iQCVAwUBPUghNVUuHi5z0oilAQFExQP9F59jx75sU6GlVHIE4NhJ8D640wvr06xG HwqvvtQLu5pK/CbS74e10yDljitBGoFUdDr9r+klNxiol/dydAt0THET6HrcDNND RxzHuYkMFV3RtN5wU3KwnnW473b+WLgxnaxUcsTETWLHIptpFOw8OaH/6kF53t9s uqz66Rg0VWY= =I1+V -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security-notifications" in the body of the message From owner-freebsd-security-notifications Wed Jul 31 19:46:11 2002 Delivered-To: freebsd-security-notifications@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EC4137B406; Wed, 31 Jul 2002 19:46:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7091643E70; Wed, 31 Jul 2002 19:46:07 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: from freefall.freebsd.org (nectar@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g712k7JU003357; Wed, 31 Jul 2002 19:46:07 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g712k7pk003355; Wed, 31 Jul 2002 19:46:07 -0700 (PDT) Date: Wed, 31 Jul 2002 19:46:07 -0700 (PDT) Message-Id: <200208010246.g712k7pk003355@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: nectar set sender to security-advisories@freebsd.org using -f From: FreeBSD Security Advisories To: FreeBSD Security Advisories Subject: FreeBSD Security Advisory FreeBSD-SA-02:34.rpc Sender: owner-freebsd-security-notifications@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Reply-To: postmaster@freebsd.org X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-02:34.rpc Security Advisory The FreeBSD Project Topic: Sun RPC XDR decoder contains buffer overflow Category: core Module: libc Announced: 2002-07-31 Credits: ISS X-Force Affects: All releases of FreeBSD up to and including 4.6.1-RELEASE-p3 Corrected: 2002-07-31 14:45:29 UTC (RELENG_4) 2002-07-31 14:47:02 UTC (RELENG_4_6) 2002-07-31 14:49:18 UTC (RELENG_4_5) 2002-07-31 14:50:18 UTC (RELENG_4_4) FreeBSD only: NO I. Background Sun RPC is a remote procedure call framework which allows clients to invoke procedures in a server process over a network somewhat transparently. XDR is a mechanism for encoding data structures for use with RPC. NFS, NIS, and many other network services are built upon Sun RPC. The FreeBSD C runtime library (libc) contains an XDR encoder/decoder derived from Sun's RPC implementation. II. Problem Description An error in the calculation of memory needed for unpacking arrays in the XDR decoder can result in a heap buffer overflow. III. Impact Any application using Sun RPC may be vulnerable to the heap buffer overflow. Depending upon the application, this vulnerability may be exploitable and lead to arbitrary code execution. Though no exploits are known to exist currently, many RPC-based services run as the superuser (such as NFS, the NIS server, rpc.statd, and others) and thus this vulnerability should be considered high-risk. No RPC-based services are enabled by default in FreeBSD installations. IV. Workaround Do not run any RPC-based services. The RPC-based services running on a machine may be determined by: # rpcinfo -p To disable any RPC-based services at next boot, add (or change if it is already present) the following lines in /etc/rc.conf: portmap_enable="NO" nfs_client_enable="NO" nfs_server_enable="NO" nis_client_enable="NO" nis_server_enable="NO" V. Solution Do one of the following: 1) Upgrade your vulnerable system to 4.6-STABLE; or to the RELENG_4_6, RELENG_4_5, or RELENG_4_4 security branch dated after the correction date (4.6.1-RELEASE-p4, 4.5-RELEASE-p12, or 4.4-RELEASE-p19). 2) To patch your present system: The following patch has been verified to apply to FreeBSD 4.4, 4.5, and 4.6 systems. a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility. # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:34/rpc.patch # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:34/rpc.patch.asc b) Execute the following commands as root: # cd /usr/src # patch < /path/to/patch c) Recompile the operating system as described in . Note that any statically linked applications that are not part of the base system (i.e. from the Ports Collection or other 3rd-party sources) must be recompiled if they use Sun RPC. All affected applications must be restarted in order to use the corrected library. Though it is not required, rebooting may be the easiest way to accomplish this. VI. Correction details The following list contains the revision numbers of each file that was corrected in FreeBSD. Path Revision Branch - ------------------------------------------------------------------------- src/lib/libc/xdr/xdr_array.c RELENG_4 1.8.2.2 RELENG_4_6 1.8.10.2 RELENG_4_5 1.8.8.2 RELENG_4_4 1.8.6.2 src/sys/conf/newvers.sh RELENG_4_6 1.44.2.23.2.9 RELENG_4_5 1.44.2.20.2.13 RELENG_4_4 1.44.2.17.2.18 - ------------------------------------------------------------------------- VII. References -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iQCVAwUBPUigCVUuHi5z0oilAQHdiAP8CcsDW7DufF7wYg0FcgoyQ2ugiBe21lgo YfAGfRcfxPtoZcmMApK3I5jUd/MRWCxBT3+ZcwtKe/aNH4hFlcpfcH5WYLVlrCgH 5QuVRR8dUfF/cWr8ejPq6xjXysUd/jMZWRQjAV8pCr+ngGSeMUeXQshB71ZyA5nk YrBUd7Uoenk= =lwhC -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security-notifications" in the body of the message From owner-freebsd-security-notifications Thu Aug 1 5:34:38 2002 Delivered-To: freebsd-security-notifications@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E85BC37B405; Thu, 1 Aug 2002 05:34:28 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70A2743E81; Thu, 1 Aug 2002 05:34:25 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: from freefall.freebsd.org (nectar@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g71CYPJU000916; Thu, 1 Aug 2002 05:34:25 -0700 (PDT) (envelope-from security-advisories@freebsd.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g71CYPI4000914; Thu, 1 Aug 2002 05:34:25 -0700 (PDT) Date: Thu, 1 Aug 2002 05:34:25 -0700 (PDT) Message-Id: <200208011234.g71CYPI4000914@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: nectar set sender to security-advisories@freebsd.org using -f From: FreeBSD Security Advisories To: FreeBSD Security Advisories Subject: FreeBSD Security Advisory FreeBSD-SA-02:34.rpc [REVISED] Sender: owner-freebsd-security-notifications@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: Reply-To: postmaster@freebsd.org X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- ============================================================================= FreeBSD-SA-02:34.rpc Security Advisory The FreeBSD Project Topic: Sun RPC XDR decoder contains buffer overflow Category: core Module: libc Announced: 2002-08-01 Credits: ISS X-Force Affects: All releases of FreeBSD up to and including 4.6.1-RELEASE-p5 Corrected: 2002-08-01 12:23:20 UTC (RELENG_4) 2002-08-01 12:23:40 UTC (RELENG_4_6) 2002-08-01 12:23:58 UTC (RELENG_4_5) 2002-08-01 12:24:20 UTC (RELENG_4_4) FreeBSD only: NO 0. Revision History v1.0 2002-07-31 Initial release v1.1 2002-08-01 Corrected patch I. Background Sun RPC is a remote procedure call framework which allows clients to invoke procedures in a server process over a network somewhat transparently. XDR is a mechanism for encoding data structures for use with RPC. NFS, NIS, and many other network services are built upon Sun RPC. The FreeBSD C runtime library (libc) contains an XDR encoder/decoder derived from Sun's RPC implementation. II. Problem Description An error in the calculation of memory needed for unpacking arrays in the XDR decoder can result in a heap buffer overflow. III. Impact Any application using Sun RPC may be vulnerable to the heap buffer overflow. Depending upon the application, this vulnerability may be exploitable and lead to arbitrary code execution. Though no exploits are known to exist currently, many RPC-based services run as the superuser (such as NFS, the NIS server, rpc.statd, and others) and thus this vulnerability should be considered high-risk. No RPC-based services are enabled by default in FreeBSD installations. IV. Workaround Do not run any RPC-based services. The RPC-based services running on a machine may be determined by: # rpcinfo -p To disable any RPC-based services at next boot, add (or change if it is already present) the following lines in /etc/rc.conf: portmap_enable="NO" nfs_client_enable="NO" nfs_server_enable="NO" nis_client_enable="NO" nis_server_enable="NO" V. Solution Do one of the following: 1) Upgrade your vulnerable system to 4.6-STABLE; or to the RELENG_4_6, RELENG_4_5, or RELENG_4_4 security branch dated after the correction date (4.6.1-RELEASE-p6, 4.5-RELEASE-p15, or 4.4-RELEASE-p22). 2) To patch your present system: The following patch has been verified to apply to FreeBSD 4.4, 4.5, and 4.6 systems. a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility. # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:34/rpc.patch # fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/patches/SA-02:34/rpc.patch.asc b) Execute the following commands as root: # cd /usr/src # patch < /path/to/patch c) Recompile the operating system as described in . Note that any statically linked applications that are not part of the base system (i.e. from the Ports Collection or other 3rd-party sources) must be recompiled if they use Sun RPC. All affected applications must be restarted in order to use the corrected library. Though it is not required, rebooting may be the easiest way to accomplish this. VI. Correction details The following list contains the revision numbers of each file that was corrected in FreeBSD. Path Revision Branch - ------------------------------------------------------------------------- src/lib/libc/xdr/xdr_array.c RELENG_4 1.8.2.3 RELENG_4_6 1.8.10.4 RELENG_4_5 1.8.8.3 RELENG_4_4 1.8.6.3 src/sys/conf/newvers.sh RELENG_4_6 1.44.2.23.2.11 RELENG_4_5 1.44.2.20.2.16 RELENG_4_4 1.44.2.17.2.21 - ------------------------------------------------------------------------- VII. References -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iQCVAwUBPUkpkFUuHi5z0oilAQF7TQP9H50V3qUsZcWC5nemnMO9CL+QBmIuuGkE C7p3mBxcH6mS5EmUU4zFOum4QSaEh9J47I7CGcS+sNg7JN5lfK1oSwsE9JidbZz4 kx9cQrx+rppQuQyK9tK4TXVXz0PiUdZMs3vgytJDuAOu38bg3ttUd4jhTIKHnLGh NMjQMH2vNUk= =yP62 -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security-notifications" in the body of the message