FILES0 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* General stuff */
  2. COPYRIGHT - Copyright info.
  3. MODES.DES - A description of the features of the different modes of DES.
  4. FILES - This file.
  5. INSTALL - How to make things compile.
  6. Imakefile - For use with kerberos.
  7. README - What this package is.
  8. VERSION - Which version this is and what was changed.
  9. KERBEROS - Kerberos version 4 notes.
  10. Makefile.PL - An old makefile to build with perl5, not current.
  11. Makefile.ssl - The SSLeay makefile
  12. Makefile.uni - The normal unix makefile.
  13. GNUmakefile - The makefile for use with glibc.
  14. makefile.bc - A Borland C makefile
  15. times - Some outputs from 'speed' on some machines.
  16. vms.com - For use when compiling under VMS
  17. /* My SunOS des(1) replacement */
  18. des.c - des(1) source code.
  19. des.man - des(1) manual.
  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. /* libdes.a source code */
  25. des_crypt.man - libdes.a manual page.
  26. des.h - Public libdes.a header file.
  27. ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code.
  28. ecb3_enc.c - des_ecb3_encrypt() source.
  29. cbc_ckm.c - des_cbc_cksum() source.
  30. cbc_enc.c - des_cbc_encrypt() source.
  31. ncbc_enc.c - des_cbc_encrypt() that is 'normal' in that it copies
  32. the new iv values back in the passed iv vector.
  33. ede_enc.c - des_ede3_cbc_encrypt() cbc mode des using triple DES.
  34. cbc3_enc.c - des_3cbc_encrypt() source, don't use this function.
  35. cfb_enc.c - des_cfb_encrypt() source.
  36. cfb64enc.c - des_cfb64_encrypt() cfb in 64 bit mode but setup to be
  37. used as a stream cipher.
  38. cfb64ede.c - des_ede3_cfb64_encrypt() cfb in 64 bit mode but setup to be
  39. used as a stream cipher and using triple DES.
  40. ofb_enc.c - des_cfb_encrypt() source.
  41. ofb64_enc.c - des_ofb_encrypt() ofb in 64 bit mode but setup to be
  42. used as a stream cipher.
  43. ofb64ede.c - des_ede3_ofb64_encrypt() ofb in 64 bit mode but setup to be
  44. used as a stream cipher and using triple DES.
  45. enc_read.c - des_enc_read() source.
  46. enc_writ.c - des_enc_write() source.
  47. pcbc_enc.c - des_pcbc_encrypt() source.
  48. qud_cksm.c - quad_cksum() source.
  49. rand_key.c - des_random_key() source.
  50. read_pwd.c - Source for des_read_password() plus related functions.
  51. set_key.c - Source for des_set_key().
  52. str2key.c - Covert a string of any length into a key.
  53. fcrypt.c - A small, fast version of crypt(3).
  54. des_locl.h - Internal libdes.a header file.
  55. podd.h - Odd parity tables - used in des_set_key().
  56. sk.h - Lookup tables used in des_set_key().
  57. spr.h - What is left of the S tables - used in ecb_encrypt().
  58. des_ver.h - header file for the external definition of the
  59. version string.
  60. des.doc - SSLeay documentation for the library.
  61. /* The perl scripts - you can ignore these files they are only
  62. * included for the curious */
  63. des.pl - des in perl anyone? des_set_key and des_ecb_encrypt
  64. both done in a perl library.
  65. testdes.pl - Testing program for des.pl
  66. doIP - Perl script used to develop IP xor/shift code.
  67. doPC1 - Perl script used to develop PC1 xor/shift code.
  68. doPC2 - Generates sk.h.
  69. PC1 - Output of doPC1 should be the same as output from PC1.
  70. PC2 - used in development of doPC2.
  71. shifts.pl - Perl library used by my perl scripts.
  72. /* I started making a perl5 dynamic library for libdes
  73. * but did not fully finish, these files are part of that effort. */
  74. DES.pm
  75. DES.pod
  76. DES.xs
  77. t
  78. typemap
  79. /* The following are for use with sun RPC implementaions. */
  80. rpc_des.h
  81. rpc_enc.c
  82. /* The following are contibuted by Mark Murray <mark@grondar.za>. They
  83. * are not normally built into libdes due to machine specific routines
  84. * contained in them. They are for use in the most recent incarnation of
  85. * export kerberos v 4 (eBones). */
  86. supp.c
  87. new_rkey.c