Re: encryption question
I'm not in ANY way an expert on this but....
My understanding is that the usual solution is to create one-way hash of the password (using MD5 or
similar algorithms) and store that. Then you can run the same hash on the entered password and see
if it matches the saved value. Properly done it should be very hard to get the password from the
hashed value.
.
Relevant Pages
- Re: Rand generator (MD5)
... My micro cannot handle anything more than 32 bits! ... YOu do not have MD5. ... It does not sound to me like your hash implimentation is very ... void byteReverse(unsigned char *buf, unsigned longs); ... (sci.crypt) - Re: Rand generator (MD5)
... My micro cannot handle anything more than 32 bits! ... YOu do not have MD5. ... It does not sound to me like your hash implimentation is very ... void byteReverse(unsigned char *buf, unsigned longs); ... (sci.crypt) - Re: "Collision for Hash Functions MD4, MD5, HAVAL-128 and RIPEMD"
... this was the Year of Doom for cryptographic hash functions. ... These go into great detail on the SHA-0 and MD5 collisions ... Difficulty in the former is called "collision resistance", ... you probably meant to say was "I can find a *different* string whose ... (comp.os.linux.security) - Re: Possibility to cheat integrity checking?
... No. Weaknesses have been found. ... I won't claim that you're -wrong- for continuing to use MD5 for file ... as a secure hash function. ... >criteria's for AES is that the cipher should be easily useable as a ... (Focus-IDS) - Re: Complex Theoretical One Way Hash Question
... is an MD5 of the modified image including the readable MD5. ... image (I don't mean a JPEG tag, I mean literally on the image canvas ... is unable to attack the hash, though a formal proof is out of my grasp. ... a public "ihash" function that accepts any file (including ... (sci.crypt) |
|