Jump to content

Storing Credit Card Info


The Little Guy

Recommended Posts

What would be a secure way to store credit card information?

 

Some people say that a salted base64_encode() is secure, but I seem to feel that that isn't as secure.

 

I thought that using Mcrypt would be a better way.

 

Any thoughts on this?

 

To be honest, I'm not sure.  I think it depends on your country's/state's laws.  Online credit card security is generally a can of worms an independent developer probably shouldn't open.  The liability alone would make me weary.

Link to comment
Share on other sites

It all has to do with PCI compliance and the above poster is correct that you probably don't want to deal with this.  Instead you can use a service like authorize.net or merchant e-solutions and have them store the credit card for you.  Alls you would need to store at that point is a token referencing the securely stored credit on their system.  I designed a system like this before and to be even more secure I even encrypted the token using a two-way cypher: http://www.phpclasses.org/package/6264-PHP-Encrypt-and-decrypt-data-using-Rijndael-256-cypher.html.

 

With that said I worked for an employer once and my boss didn't care much for the safety of the customers financial data.  We stored the credit card information using a custom written two-way cypher and probably still do to this day.  If I were the decision maker, its not a decision I would make.  You wouldn't want your data to be stored in a non-secure non-PCI compliant manner, would you?

 

https://www.pcisecuritystandards.org/

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.