Note that there are some explanatory texts on larger screens.

plurals
  1. POCredit Card storage solution
    primarykey
    data
    text
    <p>I'm developing a solution that is designed to store membership details, as well as credit card details. I'm trying to comply with PCI DSS as much as I can. Here is my design so far:</p> <p>PAN = Primary account number == long number on credit card</p> <ul> <li>Server A is a remote server. It stores all membership details (Names, Address etc..) and provides indivudal Key A's for each PAN stored<br></li> <li>Server B is a local server, and actually holds the encrypted PANs, as well as Key B, and does the decryption.</li> </ul> <p>To get a PAN, the client has to authenticate with BOTH servers, ask Server A for the respective Key A, then give Key A to server B, which will return the PAN to the client (provided authentication was sucessful). Server A will only ever encrypt Key A with Server B's public Key, as it will have it beforehand. Server B will probably have to send a salt first though, however I doin't think that has to be encrypted</p> <p>I havn't really thought about any implementation (i.e. coding) specifics yet regarding the above, however the solution is using Java's Cajo framework (wrapper for RMI) so that is how the servers will communicate with each other (Currently, membership details are transfered in this way).</p> <p>The reason why I want Server B to do the decryption, and not the client, is that I am afraid of decryption keys going into the client's RAM, even though it's probably just as bad on the server...</p> <p>Can anyone see anything wrong with the above design? It doesn't matter if the above has to be changed.</p> <p>Thanks</p> <p>jtnire</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload