As many APIs provides access remotely to their data through the user/password combination, I was wondering wich was the best way to store those value, highly secure way (even if 100% is impossible), in order to connect them directly without asking everytime for those.
|
|
The best way would be to rely on someone else to store them and to trust that party instead. But if you must have control I'd suggest reading a good book on secure systems and then thinking again. There are many many variables to consider and most of the time you just mitigate the risk vs cost. |
||
|
|
|
|
I recommend one of three approaches:
|
||
|
|
|
|
Store login in plain in database and the md5(md5(password)+salt) as a password hash. That should be secure enough |
||||||
|
