up vote 1 down vote favorite
share [g+] share [fb]

I am looking for a simple unpatented one-way encryption algorithm, preferably in c. I would like to use it to validate passwords.

link|improve this question

78% accept rate
feedback

8 Answers

up vote 13 down vote accepted

SHA-1 and the rest of its family were patented by the US government which "has released the patent under a royalty free license". Many public-domain implementations may be found through Google. :-)

link|improve this answer
feedback

The correct name for 'one-way encryption algorithm' is 'hashing algorithm' (you did mean a way to 'scramble' a password so that it can never be recovered, right?)

Do not use md5 in modern applications, successful attacks on it have been showing up since 2004 (see http://www.doxpara.com/md5_someday.pdf for references). Use the SHA family.

link|improve this answer
2  
A true 'one-way encryption algorithm' would be to discard the data and instead pipe in from /dev/random. :-) – Brian Knoblauch Oct 17 '08 at 18:54
feedback

SHA-1 seems like a good suggestion, or, if you believe that SHA-1 is close to being cracked, one of the SHA-2 family.

You may feel that MD5 isn't "safe" enough.

link|improve this answer
feedback

just use the crypt(3) function

here's the background

link|improve this answer
feedback

MD5 has suited me fine so far.

link|improve this answer
feedback

MD5 and SHA512 (or another SHA-2 variant) both have theoretical vulnerabilities identified in them. I don't think SHA has yet been demonstrated as broken but the possability exists. Whirlpool is a royalty free hash algorithm that has (as yet) not shown any weakness. This page has a link to the C reference implementation.

link|improve this answer
feedback

In fact using a hash is not enought. you should use a salt to limit them and a more advanced technique such as bcrypt limits the possibilities of guessing the password

link|improve this answer
feedback

Why does MD5 or SHA1 not work for you?

/Allan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.