aboutsummaryrefslogtreecommitdiff
path: root/contrib/telnet/libtelnet/enc_des.c
Commit message (Collapse)AuthorAgeFilesLines
* Use __FBSDID vs. rcsid[]. Also protect sccs[] and copyright[] from GCC 3.3.David E. O'Brien2003-05-041-6/+4
| | | | Notes: svn path=/head/; revision=114630
* Background:Jacques Vidrine2003-01-291-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | When libdes was replaced with OpenSSL's libcrypto, there were a few interfaces that the former implemented but the latter did not. Because some software in the base system still depended upon these interfaces, we simply included them in our libcrypto (rnd_keys.c). Now, finally get around to removing the dependencies on these interfaces. There were basically two cases: des_new_random_key -- This is just a wrapper for des_random_key, and these calls were replaced. des_init_random_number_generator et. al. -- A few functions were used by the application to seed libdes's PRNG. These are not necessary when using libcrypto, as OpenSSL internally seeds the PRNG from /dev/random. These calls were simply removed. Again, some of the Kerberos 4 files have been taken off the vendor branch. I do not expect there to be future imports of KTH Kerberos 4. Notes: svn path=/head/; revision=110049
* Damn. The previous mega-commit was incomplete WRT ANSIfication. ThisMark Murray2001-11-301-8/+8
| | | | | | | fixes that. Notes: svn path=/head/; revision=87155
* Very large style makeover.Mark Murray2001-11-301-153/+97
| | | | | | | | | | | | | | | | 1) ANSIfy. 2) Clean up ifdefs so that a) ones that never/always apply are appropriately either fully removed, or just the #if junk is removed. b) change #if defined(FOO) for appropiate values of FOO. (currently AUTHENTICATION and ENCRYPTION) 3) WARNS=2 fixing 4) GC other unused stuff This code can now be unifdef(1)ed to make non-crypto telnet. Notes: svn path=/head/; revision=87139
* Add __FBSDID() to diff-reduce with "base" telnet.Mark Murray2001-10-011-0/+3
| | | | Notes: svn path=/head/; revision=84305
* Code merge and diff reduce with "base" telnet. This is the "later"Mark Murray2001-08-201-1/+2
| | | | | | | | telnet, so it was treated as the reference code, except where later commits were made to "base" telnet. Notes: svn path=/head/; revision=81965
* Get crypto from libcrypto, not libdes.Mark Murray2000-02-241-1/+3
| | | | Notes: svn path=/head/; revision=57442
* Bring the FreeBSD changes to the virgin sources.Mark Murray1997-09-071-17/+13
| | | | Notes: svn path=/head/; revision=29181
* Initial import of BSD telnet. This will be used to build the kerberisedMark Murray1997-09-041-0/+724
telnet, and after userland diffs have been merged in, will be used to build the non-kerberised sources as well. (See unifdef(1) for details) Notes: svn path=/vendor-crypto/telnet/dist/; revision=29088