README.qfdes
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. The qfDES code is derived from Saleem Bhatti's code, but has been significantly
  2. revised, debugged and updated. The following is the original README, followed
  3. by some other information which may be useful, taken from Eric Young's libdes.
  4. ===============================================================================
  5. This is yet another implementation of DES in software, for those of us that
  6. don't have access to DES hardware. The library is fairly (but not quite)
  7. complete, as are the two progs, qf-des and qf-key. However, debugging and
  8. testing is still proceeding ...
  9. Quickie Roadmap
  10. ---------------
  11. qf-des: Do DES on files (qf-des.c)
  12. qf-key: Generate keys and IVs (qf-key.c)
  13. libqfDES.a: library of DES stuff
  14. qfDES.h: Interface file for libqfDES.a
  15. qfDES.c: The DES function
  16. qfDES-print.c: For generating some of the DES macros and S-Box/P transforms
  17. qfDES-key.c: Key and IV generation
  18. qfDES-memory.c: Fiddling around with memory
  19. Disclaimer
  20. ----------
  21. This version of the qfDES is for me only, so if you have it and are not me,
  22. then I take no responsibility for what happens when you use it!
  23. TTFN,
  24. --/Saleem
  25. ===============================================================================
  26. Modes of DES
  27. Quite a bit of the following information has been taken from
  28. AS 2805.5.2
  29. Australian Standard
  30. Electronic funds transfer - Requirements for interfaces,
  31. Part 5.2: Modes of operation for an n-bit block cipher algorithm
  32. Appendix A
  33. There are several different modes in which DES can be used, they are
  34. as follows.
  35. Electronic Codebook Mode (ECB) (des_ecb_encrypt())
  36. - 64 bits are enciphered at a time.
  37. - The order of the blocks can be rearranged without detection.
  38. - The same plaintext block always produces the same ciphertext block
  39.   (for the same key) making it vulnerable to a 'dictionary attack'.
  40. - An error will only affect one ciphertext block.
  41. Cipher Block Chaining Mode (CBC) (des_cbc_encrypt())
  42. - a multiple of 64 bits are enciphered at a time.
  43. - The CBC mode produces the same ciphertext whenever the same
  44.   plaintext is encrypted using the same key and starting variable.
  45. - The chaining operation makes the ciphertext blocks dependent on the
  46.   current and all preceding plaintext blocks and therefore blocks can not
  47.   be rearranged.
  48. - The use of different starting variables prevents the same plaintext
  49.   enciphering to the same ciphertext.
  50. - An error will affect the current and the following ciphertext blocks.
  51. Cipher Feedback Mode (CFB) (des_cfb_encrypt())
  52. - a number of bits (j) <= 64 are enciphered at a time.
  53. - The CFB mode produces the same ciphertext whenever the same
  54.   plaintext is encrypted using the same key and starting variable.
  55. - The chaining operation makes the ciphertext variables dependent on the
  56.   current and all preceding variables and therefore j-bit variables are
  57.   chained together and con not be rearranged.
  58. - The use of different starting variables prevents the same plaintext
  59.   enciphering to the same ciphertext.
  60. - The strength of the CFB mode depends on the size of k (maximal if
  61.   j == k).  In my implementation this is always the case.
  62. - Selection of a small value for j will require more cycles through
  63.   the encipherment algorithm per unit of plaintext and thus cause
  64.   greater processing overheads.
  65. - Only multiples of j bits can be enciphered.
  66. - An error will affect the current and the following ciphertext variables.
  67. Output Feedback Mode (OFB) (des_ofb_encrypt())
  68. - a number of bits (j) <= 64 are enciphered at a time.
  69. - The OFB mode produces the same ciphertext whenever the same
  70.   plaintext enciphered using the same key and starting variable.  More
  71.   over, in the OFB mode the same key stream is produced when the same
  72.   key and start variable are used.  Consequently, for security reasons
  73.   a specific start variable should be used only once for a given key.
  74. - The absence of chaining makes the OFB more vulnerable to specific attacks.
  75. - The use of different start variables values prevents the same
  76.   plaintext enciphering to the same ciphertext, by producing different
  77.   key streams.
  78. - Selection of a small value for j will require more cycles through
  79.   the encipherment algorithm per unit of plaintext and thus cause
  80.   greater processing overheads.
  81. - Only multiples of j bits can be enciphered.
  82. - OFB mode of operation does not extend ciphertext errors in the
  83.   resultant plaintext output.  Every bit error in the ciphertext causes
  84.   only one bit to be in error in the deciphered plaintext.
  85. - OFB mode is not self-synchronising.  If the two operation of
  86.   encipherment and decipherment get out of synchronism, the system needs
  87.   to be re-initialised.
  88. - Each re-initialisation should use a value of the start variable
  89. different from the start variable values used before with the same
  90. key.  The reason for this is that an identical bit stream would be
  91. produced each time from the same parameters.  This would be
  92. susceptible to a ' known plaintext' attack.
  93. Triple ECB Mode (des_3ecb_encrypt())
  94. - Encrypt with key1, decrypt with key2 and encrypt with key1 again.
  95. - As for ECB encryption but increases the effective key length to 112 bits.
  96. - If both keys are the same it is equivalent to encrypting once with
  97.   just one key.
  98. Triple CBC Mode (des_3cbc_encrypt())
  99. - Encrypt with key1, decrypt with key2 and encrypt with key1 again.
  100. - As for CBC encryption but increases the effective key length to 112 bits.
  101. - If both keys are the same it is equivalent to encrypting once with
  102.   just one key.
  103. ===============================================================================