Storing Credit Card Numbers in SESSION - ways around it?

后端 未结 13 2163
独厮守ぢ
独厮守ぢ 2021-01-30 05:11

I am well aware of PCI Compliance so don\'t need an earful about storing CC numbers (and especially CVV nums) within our company database during checkout process.

Howev

13条回答
  •  说谎
    说谎 (楼主)
    2021-01-30 06:00

    At some point later on in the payment processing (last part of step 3), you'll need to encrypt the CC# (and CVC) to be able to send it to the payment processer (I assume)

    Why not do that encryption right when you recieve the information, next to the obfuscation needed for the confirmation page. (this is the last part of step 1)

    From now on, only work with this encrypted or obfuscated data, making the CC-company the only one who can actually decrypt the full data.

提交回复
热议问题