Re: Re: How should I store credit cards for offline processing

2006-12-01 Thread Jay Parlar
On 12/1/06, Noah <[EMAIL PROTECTED]> wrote: > > I'm not in charge of such decisions. I only write the code. Doesn't remove the moral obligation on your part to do something about it, or refuse the work. Jay P. --~--~-~--~~~---~--~~ You received this message beca

Re: How should I store credit cards for offline processing

2006-12-01 Thread Noah
I'm not in charge of such decisions. I only write the code. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe fr

Re: How should I store credit cards for offline processing

2006-12-01 Thread Waylan Limberg
Noah wrote: > It's only for a couple weeks or so until actual online processing > without storing the cards is implemented. It's also fairly likley there > won't be a single order taken IMO... > At the very least make sure you fully disclose that to any potential customers up front. Of course,

Re: How should I store credit cards for offline processing

2006-12-01 Thread Noah
It's only for a couple weeks or so until actual online processing without storing the cards is implemented. It's also fairly likley there won't be a single order taken IMO... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: How should I store credit cards for offline processing

2006-12-01 Thread Noah
I figured I'd use GPG --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PR

RE: How should I store credit cards for offline processing

2006-12-01 Thread Hull, Dave
Subject: Re: How should I store credit cards for offline processing Don't implement a pub/priv key pair system -- just use GnuPG. And I would strongly recommend against having the decryption of this data anywhere near the same machine as the one that stores the encrypted cc#'s. For your o

Re: How should I store credit cards for offline processing

2006-12-01 Thread Joshua \"jag\" Ginsberg
Don't implement a pub/priv key pair system -- just use GnuPG. And I would strongly recommend against having the decryption of this data anywhere near the same machine as the one that stores the encrypted cc#'s. For your online processing, I recommend using TrustCommerce and store the credit card

How should I store credit cards for offline processing

2006-12-01 Thread Noah
I'm working on a site who's not ready to do online processing with a gateway but they want to launch anyways. They would like a secure way to store the credit cards in the database. Does anyone have a good solution for this? I was thinking but I'd rather not have to write all the code to implemen