home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0679.ZIP / CCE_0679.PD / DES301 / FILES < prev    next >
Text File  |  1993-10-08  |  2KB  |  61 lines

  1. /* General stuff */
  2. CHANGES        - Changes since the last posting to comp.sources.misc.
  3. ARTISTIC    - Copying info.
  4. COPYING        - Copying info.
  5. MODES.DES    - A description of the features of the different modes of DES.
  6. FILES        - This file.
  7. INSTALL        - How to make things compile.
  8. Imakefile    - For use with kerberos.
  9. README        - What this package is.
  10. VERSION        - Which version this is.
  11. KERBEROS    - Kerberos version 4 notes.
  12. makefile    - The make file.
  13. times        - Some outputs from 'speed' on my local machines.
  14. vms.com        - For use when compiling under VMS
  15.  
  16. /* My sunOS des(1) replacement */
  17. des.c        - des(1) source code.
  18. des.man        - des(1) manual.
  19.  
  20. /* Testing and timing programs. */
  21. destest.c    - Source for libdes.a test program.
  22. speed.c        - Source for libdes.a timing program.
  23. rpw.c        - Source for libdes.a testing password reading routines.
  24.  
  25. /* libdes.a source code */
  26. des_crypt.man    - libdes.a manual page.
  27. des.h        - Public libdes.a header file.
  28. ecb_enc.c    - des_ecb_encrypt() source, this contains the basic DES code.
  29. 3ecb_enc.c    - des_3ecb_encrypt() source.
  30. cbc_ckm.c    - des_cbc_cksum() source.
  31. cbc_enc.c    - des_cbc_encrypt() source.
  32. 3cbc_enc.c    - des_3cbc_encrypt() source.
  33. cfb_enc.c    - des_cfb_encrypt() source.
  34. ofb_enc.c    - des_cfb_encrypt() source.
  35. enc_read.c    - des_enc_read() source.
  36. enc_writ.c    - des_enc_write() source.
  37. pcbc_enc.c    - des_pcbc_encrypt() source.
  38. qud_cksm.c    - quad_cksum() source.
  39. rand_key.c    - des_random_key() source.
  40. read_pwd.c    - Source for des_read_password() plus related functions.
  41. set_key.c    - Source for des_set_key().
  42. str2key.c    - Covert a string of any length into a key.
  43. fcrypt.c    - A small, fast version of crypt(3).
  44. des_locl.h    - Internal libdes.a header file.
  45. podd.h        - Odd parity tables - used in des_set_key().
  46. sk.h        - Lookup tables used in des_set_key().
  47. spr.h        - What is left of the S tables - used in ecb_encrypt().
  48.  
  49. /* The perl scripts - you can ignore these files they are only
  50.  * included for the curious */
  51. des.pl        - des in perl anyone? des_set_key and des_ecb_encrypt
  52.           both done in a perl library.
  53. testdes.pl    - Testing program for des.pl
  54. doIP        - Perl script used to develop IP xor/shift code.
  55. doPC1        - Perl script used to develop PC1 xor/shift code.
  56. doPC2        - Generates sk.h.
  57. PC1        - Output of doPC1 should be the same as output from PC1.
  58. PC2        - used in development of doPC2.
  59. shifts.pl    - Perl library used by my perl scripts.
  60.  
  61.