home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / next / misc / 21927 < prev    next >
Encoding:
Internet Message Format  |  1992-11-12  |  2.1 KB

  1. Path: sparky!uunet!ukma!darwin.sura.net!haven.umd.edu!ni.umd.edu!sayshell.umd.edu!louie
  2. From: louie@sayshell.umd.edu (Louis A. Mamakos)
  3. Newsgroups: comp.sys.next.misc
  4. Subject: Re: Checksum software
  5. Date: 12 Nov 1992 18:19:50 GMT
  6. Organization: University of Maryland, College Park
  7. Lines: 35
  8. Message-ID: <1du786INN9ht@ni.umd.edu>
  9. References: <lfj225INN675@ai.cs.utexas.edu> <1992Nov6.130523.5725@cubetech.com>
  10. NNTP-Posting-Host: sayshell.umd.edu
  11. Keywords: checksum software
  12.  
  13. In article <1992Nov6.130523.5725@cubetech.com> andrew@cubetech.com (Andrew Loewenstern) writes:
  14. >In article <lfj225INN675@ai.cs.utexas.edu> yu@cs.utexas.edu (Yeong-Ho Yu) writes:
  15. >>Several months ago, there was a mention on a public domain software which
  16. >>calculates some type of checksum of a file.  I believe it was included
  17. >>in the distribution of another software which required a root privilege to
  18. >>install.
  19. >>
  20.  
  21. My SLIP software is distributed along with a standalone-command, md5,
  22. to compute MD5 message digests of file.  The software is also
  23. distributed with a list of the valid MD5 digests; the intent is that
  24. you can use this to verify that the file arrived intact during
  25. transmission and other transport.
  26.  
  27. >there's always the unix 'sum' command.  If you really, really have to
  28. >know if the data has been changed, I have a object that I wrote that
  29. >calculates the MD5 of an NXStream.  MD5 is "Message-Digest 5."  It's a
  30. >128-bit message-digest algorithm from the good folks (ha) at RSA Data
  31. >Security.  It's public domain, but I think if you use in your software
  32. >you have to put something like "MD5 From RSA Data Security" on the
  33. >info-panel...
  34.  
  35. The UNIX 'sum' command is pretty much worthless if you are trying to
  36. detect intentional modification of a file.  The whole point of message
  37. digest algorithms like MD2 and MD5 is that it is computationally
  38. infeasible to produce plaintext that will result in a given digest.
  39. Both MD2 and MD5 compute a 16 BYTE digest of the given plaintext
  40. input.
  41.  
  42. The MD5 program supplied in the SLIP_920904 software is just the code
  43. provided in the MD5 specificaion as a reference implementation, if you
  44. are looking for the source code.
  45.  
  46. louie
  47.  
  48.