That 2000BTC the thieves made off with is worth about $32,000 at the moment.
Those 500K Bitcoins that caused the flash crash weren't real
11–20 of 176 posts
Re: Those 500K Bitcoins that caused the flash crash weren't real
#12"The new Mt. Gox site features SHA-512 multi-iteration, triple salted hashing" Why not use a standard key derivation function such as PBKDF2 or bcrypt to provide some confidence in the system rather than inventing their own? AFAIK bcrypt is strong because of Blowfish's expensive key setup. How does this compare to SHA-512?
The part that bothers me about that is "triple salted hashing". This could mean any number of things, all of which point to a misunderstanding of what a salt is for.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#13That 2000BTC the thieves made off with is worth about $32,000 at the moment.
EDIT: It looks like the guy I'm talking about only withdrew 640ish coins, so this must be someone else.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#14Earlier quoted context omitted.
The part that bothers me about that is "triple salted hashing". This could mean any number of things, all of which point to a misunderstanding of what a salt is for.
Triple salted hashing sounds like either there's three salts in a hash or it's hashed with a salt three times.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#15Earlier quoted context omitted.
Triple salted hashing sounds like either there's three salts in a hash or it's hashed with a salt three times.
Perhaps they mean it's salted by 3 different environments, so an attacker would need to crack the db server and 3 other servers just to get a chance to start cracking the passwords.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#16Earlier quoted context omitted.
The part that bothers me about that is "triple salted hashing". This could mean any number of things, all of which point to a misunderstanding of what a salt is for.
Triple salted hashing sounds like either there's three salts in a hash or it's hashed with a salt three times.
I could quintuple-salt my passwords with 4096 byte salts chosen purely randomly and there would be no perceivable advantage over a single 512 bit salt.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#17They can inflate the bitcoin in circulation, and all it takes is enough real bitcoin and cash to cover the withdrawals for no one to know the difference.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#18Earlier quoted context omitted.
The part that bothers me about that is "triple salted hashing". This could mean any number of things, all of which point to a misunderstanding of what a salt is for.
How so? Seems to me like it could mean any number of things, all of which succeed in securely hashing+salting a password.
At the end of the day, salts are there for one thing alone: eliminating the possibility of rainbow tables. But whether you use 1 salt of decent size (64-bit minimum for that) or 1000, you've got the exact same protection there. There's a good reason it's recommended that you use PBKDF2 or bcrypt.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#19Earlier quoted context omitted.
The part that bothers me about that is "triple salted hashing". This could mean any number of things, all of which point to a misunderstanding of what a salt is for.
How so? Seems to me like it could mean any number of things, all of which succeed in securely hashing+salting a password.
Re: Those 500K Bitcoins that caused the flash crash weren't real
#20Earlier quoted context omitted.
The part that bothers me about that is "triple salted hashing". This could mean any number of things, all of which point to a misunderstanding of what a salt is for.
Triple salted hashing sounds like either there's three salts in a hash or it's hashed with a salt three times.