up vote 22 down vote favorite
2
share [g+] share [fb]

Is there a significance to the word "salt" for a password salt?

link|improve this question

feedback

closed as off topic by ho1, sclv, Mat, Jay Riggs, Jerry Coffin Jul 7 '11 at 23:24

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

8 Answers

up vote 24 down vote accepted

http://www.derkeiler.com/Newsgroups/comp.security.misc/2003-05/0154.html

The use of the word "salt" is probably a reference to warfare in ancient times, when people would salt the wells or farmland to make it less hospitable. The Romans are sometimes supposed to have done this to Carthage in 146 BC. In the context of passwords, a "salted" password is harder to crack.

Apparently, there's no strong evidence even for the original "salting" of Carthage (http://en.wikipedia.org/wiki/Salting_the_earth) claim, but an interesting hypothesis nonetheless.

link|improve this answer
+1 for the link, although I seriously doubt it's correct (not the history, just the relationship with cryptography) – Jon B Oct 28 '08 at 21:29
3  
Though whether or not the history is correct really has nothing to do with the etymology of the technical term. I have no idea who invented the term "salt" or what they were thinking when they did, but it is certainly possible that they were thinking of an historical allusion that turned out to be inaccurate. Like, if someone says "The author called this program George because, like George Washington, it never tells a lie,", the fact that you can prove that George Washington did tell a lie at some point hardly proves that that was not the source of the name of the product. – Jay Oct 19 '09 at 13:45
feedback

Maybe because salt goes well with hash?

link|improve this answer
feedback

The only meaning is that you are adding something to your password before you hash it, similarly to adding salt to your meal :-)

link|improve this answer
This is what I've guessed, but never found anything authoritative to back it up. Can you cite any sources for this? – erickson Oct 28 '08 at 22:43
I don't have any source at hand now. That was only my perception from the texts I have read about that some time ago. – Leopold Cimrman Oct 29 '08 at 10:08
feedback

According to Ken Thompson, one of the first people to use the term in a book, it's related to the term "salting a mine", referring to gold mines. Whether that is "correct" or not who knows? I doubt there's an actual correct answer to this, it's just one of those terms that doesn't really have to have a reason as long as what it means is understood.

link|improve this answer
Interesting. Can you elaborate? What does it mean to "salt a mine"? – erickson Oct 28 '08 at 21:42
It means to artificially lace a mine with gold to make it appear to be a gold mine. Not sure that relates directly to the purpose of a salt in cryptography, but not much else does either. – Gerald Oct 28 '08 at 22:10
1  
Well, there surely is a correct answer. I mean, someone must have been the first to use the term, and he must have had some reason for thinking it was appropriate. That said, I have no idea who invented it or what he was thinking. It might have been something very clear and insightful, or it may have just been that he was eating lunch when he came up with the idea and, groping for what to call it, noticed the salt shaker on the table in front of him. (There have been less significant origins of technical terms than that. Cf "googol" and "quark".) – Jay Oct 19 '09 at 13:48
feedback

I had thought it related to the verb salt ...

(salt away) informal put by (money) secretly.

-- http://www.askoxford.com/concise_oed/saltx?view=uk

link|improve this answer
feedback

I would guess because it's easy to add "salt" (NaCl or a fixed string). But once you do, the output is irrevocably changed (food, encrypted password).

link|improve this answer
1  
if you put a potato, it's going to remove the salt. http://wiki.answers.com/Q/How_do_you_remove_salt_from_food_when_you're_cooking – Stefano Borini Mar 24 '10 at 3:36
feedback

Because before you hash the password, you add a random text to it. So, it looks like as if you add some "salt" to the original "food" ... password :)

link|improve this answer
feedback

Once you add salt to food the real taste is no longer visible. So basically this is a figurative saying; add a little salt and it changes the original dish.

link|improve this answer
feedback

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