I've seen some websites, particularly banking sites, that ask you to enter this (for example). Sometimes they ask for this to prove my identity over the phone.

  • The 2nd character of your password
  • The 5th character of your password
  • The 6th character of your password

To do this, a hashing algorithm won't work, would it? Surely something that should be as secure as a bank would have a way of storing the un-decryptable passwords?

link|improve this question

If you really want to know, why not ask the bank. – Gamecat Nov 9 '11 at 7:43
It's not a bad idea, but I think I'll probably be passed around on hold for at least 2 hours before I reach someone who even knows someone who might know how the database is set up. Particularly as I'm not concerned about it, just interested ;D – Connell Watkins Nov 9 '11 at 9:28
feedback

closed as off topic by Laurent Etiemble, Gamecat, martin clayton, ChrisF, BalusC Nov 13 '11 at 6:03

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

5 Answers

up vote 2 down vote accepted

Yes this can work without holding the plain text version of your password. Simply, when you originally set your password, the bank will hash the various combinations it will ever ask for, and store those hashes. This is very simple to implement, regardless of whether you have a fixed length password (i.e. a PIN number) or a variable length one. These hashes can be stored in a preset series of columns in the table related to the user, or as a simple 3 column table - ID (the primary key), UserId, Hash, and there is one row for each combination of n characters in your password.

I have doubts about the efficacy of this method over asking for the whole password though... maybe someone has a comment on that?

link|improve this answer
feedback

It would be not too surprising, if (some) banks (or other big corporations) really stored plain-text passwords, or ROT13'd ones, or even double ROT13'd...

link|improve this answer
1  
cough Sony cough – Connell Watkins Nov 8 '11 at 10:56
feedback

It's probably not a good item to discuss on an open forum, but what is to stop them from inserting your selected characters into a memory held, decrypted, copy of your memorable phrase or word at the appopriate locations, encrypting it and performing a binary comparison on the result?

link|improve this answer
feedback

I would imagine they'd have some kind of private key system for decrypting (maybe even a private key per account, to improve security)...

link|improve this answer
feedback

They could just as easily keep a HASH of the single characters couldn't they?

You do NOT actually have to use a one-way HASH. You could just as easily use a two-way cypher, if you were certain that your key was secure. In this case they could easily keep the cypher on systems not accessible from the net.

link|improve this answer
feedback

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