vote up 1 vote down star

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

flag

7 Answers

vote up 13 vote down check

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|flag
vote up 2 vote down

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|flag
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
vote up 1 vote down

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|flag
vote up 0 vote down

just use the crypt(3) function

here's the background

link|flag
vote up 0 vote down

MD5 has suited me fine so far.

link|flag
vote up 0 vote down

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|flag
vote up -1 vote down

Why does MD5 or SHA1 not work for you?

/Allan

link|flag

Your Answer

Get an OpenID
or

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