Forum Moderators: buckworks
I believe that it is your obligation to make sure that data is encrypted so that it can ONLY be read by the intended recipients (You). Remember, Emails are sent in plain text format and could be easily sniffed by a 3rd party.
I think emailing yourself the order details is fine BUT Encryption is definetly required.
At the very least you could write you own script to just encrypt the creditcard details, substituting each number 0-9 with a string of some kinda, then you could decrypt it on your end. Simple but it would work effectively.
At the very least you could write you own script to just encrypt the creditcard details, substituting each number 0-9 with a string of some kinda, then you could decrypt it on your end. Simple but it would work effectively.
Gaak! The first several digits in a credit card number are fairly common (or easily guessed), and the LUN checksum inherit in the number means that with only a handful of stolen numbers, you'd easily break that system.
PGP/GPG would be a good way to do it. Since it uses public key cryptography there are no private keys on the web server, and only the indended recipient(s) can read it.
Sean