Storing Credit Card Numbers in SESSION - ways around it?

后端 未结 13 2177
独厮守ぢ
独厮守ぢ 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:08

    You could store a hash of the card nr in session and the same hash and the actual number and the user's session id in a database. Then for each page you can check the hash and the session info to get the card nr.

提交回复
热议问题