Safest LAMP encrypt method

Posted by Adam Kiss on Stack Overflow See other posts from Stack Overflow or by Adam Kiss
Published on 2010-04-04T12:20:57Z Indexed on 2010/04/04 12:23 UTC
Read the original article Hit count: 235

Filed under:
|
|
|

Hello,

what is PHP's safest encrypt/decrypt method, in use with MySQL - to store let's say passwords?

Of course, not for portal purposes.

I want to do little password (domain/mysql/ftp...) storage for whole team online, but I don't want really to endanger our clients' bussinesses. Hash can't be used for obvious reasons (Doesn't really make sense to run rainbow tables every time :D).

Any idea?

© Stack Overflow or respective owner

Related posts about php

Related posts about password-safety

  • Safest LAMP encrypt method

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Hello, what is PHP's safest encrypt/decrypt method, in use with MySQL - to store let's say passwords? Of course, not for portal purposes. I want to do little password (domain/mysql/ftp...) storage for whole team online, but I don't want really to endanger our clients' bussinesses. Hash can't be… >>> More

  • Password security; Is this safe?

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I asked a question yesterday about password safety... I am new at security... I am using a mysql db, and need to store users passwords there. I have been told in answers that hashing and THEN saving the HASHED value of the password is the correct way of doing this. So basically I want to verify… >>> More