From: Bastien Koert on 21 Apr 2009 10:23 On Tue, Apr 21, 2009 at 10:14 AM, tedd <tedd.sperling(a)gmail.com> wrote: > At 9:49 AM -0400 4/21/09, Bob McConnell wrote: > >> From: tedd >> >>> At 8:39 AM -0400 4/21/09, Bob McConnell wrote: >>> >>>> I have been asked by a product manager what our options are for >>>> encrypting email messages with sensitive information. We are currently >>>> using PHPMailer to send email. What can be done to encrypt those >>>> messages? Can it be done without OOP? >>>> >>> >>> From within a php script, it's not a problem to encrypt a text string >>> >> >> and send it as email. The sending of the email and the encrypting the >>> contents are two different issues. You may want to look at it that >>> way. >>> >> >> But can it be done so the recipient's email client will automatically >> open and decrypt the message? How do you make it as seamless as possible >> for them, preferably so they don't even realize the message was >> encrypted? >> >> Bob McConnell >> > > Bob: > > At some point both parties (sender/receiver) must know (agree) what the > encrypting mechanism is. > > If I was writing a script to do this for a client, I must have control over > both the send and receive scripts and then I could deliver the email to the > client seamlessly. They would never know what happened in the background. > > However, if your client wants to send stuff to anyone and have it encrypted > without knowing who the receiver is going to be, then there is no way to do > this. Both the sender and receiver must agree on the encrypting mechanism > either by providing passwords OR by you having access to both the sending > and receiving scripts. As I see it, there is no other way. > > Cheers, > > tedd > > -- > ------- > http://sperling.com http://ancientstones.com http://earthstones.com > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > A number of our clients are moving towards secure webmail delivery and the mechanism is as Tedd describes. The only other option, if your clients are all on Outlook, is to use something like GPG for outlook to encrypt the transmission ( http://www.gpg4win.org/index.html ). -- Bastien Cat, the other other white meat
From: "Bob McConnell" on 21 Apr 2009 10:43 From: tedd [mailto:tedd.sperling(a)gmail.com] > At 9:49 AM -0400 4/21/09, Bob McConnell wrote: > >From: tedd > >> At 8:39 AM -0400 4/21/09, Bob McConnell wrote: > >>>I have been asked by a product manager what our options are for > >>>encrypting email messages with sensitive information. We are currently > >>>using PHPMailer to send email. What can be done to encrypt those > >>>messages? Can it be done without OOP? > >> > >> From within a php script, it's not a problem to encrypt a text string > > > >> and send it as email. The sending of the email and the encrypting the > >> contents are two different issues. You may want to look at it that > >> way. > > > >But can it be done so the recipient's email client will automatically > >open and decrypt the message? How do you make it as seamless as possible > >for them, preferably so they don't even realize the message was > >encrypted? > > At some point both parties (sender/receiver) must know (agree) what > the encrypting mechanism is. > > If I was writing a script to do this for a client, I must have > control over both the send and receive scripts and then I could > deliver the email to the client seamlessly. They would never know > what happened in the background. > > However, if your client wants to send stuff to anyone and have it > encrypted without knowing who the receiver is going to be, then there > is no way to do this. Both the sender and receiver must agree on the > encrypting mechanism either by providing passwords OR by you having > access to both the sending and receiving scripts. As I see it, there > is no other way. These will be targeted emails for selected recipients, primarily in the Security and Public Safety offices. But they will be sent via public mail servers, so the content must be protected. Knowing the first site where this would go for field trials, I suspect most recipients are using some version of Microsoft Outlook. But other sites down the road are likely to have different clients. That end is completely outside of my control or influence. All I can do is recommend packages for them to download and install. I already know I need to get a public key from each recipient before I can encrypt their messages, but that's as far as I have gotten. I did glance at the GPG site earlier, and it appears they only support the version of Outlook in Office 2003. I have a feeling this is going to get messy, at least on the deployment end. Thanks for the pointers, Bob McConnell
From: haliphax on 21 Apr 2009 11:22 On Tue, Apr 21, 2009 at 9:43 AM, Bob McConnell <rvm(a)cbord.com> wrote: > From: tedd [mailto:tedd.sperling(a)gmail.com] >> At 9:49 AM -0400 4/21/09, Bob McConnell wrote: >> >From: tedd >> >> Â At 8:39 AM -0400 4/21/09, Bob McConnell wrote: >> >>>I have been asked by a product manager what our options are for >> >>>encrypting email messages with sensitive information. We are > currently >> >>>using PHPMailer to send email. What can be done to encrypt those >> >>>messages? Can it be done without OOP? >> >> >> >> Â From within a php script, it's not a problem to encrypt a text > string >> > >> >> Â and send it as email. The sending of the email and the encrypting > the >> >> Â contents are two different issues. You may want to look at it that >> >> Â way. >> > >> >But can it be done so the recipient's email client will automatically >> >open and decrypt the message? How do you make it as seamless as > possible >> >for them, preferably so they don't even realize the message was >> >encrypted? >> >> At some point both parties (sender/receiver) must know (agree) what >> the encrypting mechanism is. >> >> If I was writing a script to do this for a client, I must have >> control over both the send and receive scripts and then I could >> deliver the email to the client seamlessly. They would never know >> what happened in the background. >> >> However, if your client wants to send stuff to anyone and have it >> encrypted without knowing who the receiver is going to be, then there >> is no way to do this. Both the sender and receiver must agree on the >> encrypting mechanism either by providing passwords OR by you having >> access to both the sending and receiving scripts. As I see it, there >> is no other way. > > These will be targeted emails for selected recipients, primarily in the > Security and Public Safety offices. But they will be sent via public > mail servers, so the content must be protected. > > Knowing the first site where this would go for field trials, I suspect > most recipients are using some version of Microsoft Outlook. But other > sites down the road are likely to have different clients. That end is > completely outside of my control or influence. All I can do is recommend > packages for them to download and install. I already know I need to get > a public key from each recipient before I can encrypt their messages, > but that's as far as I have gotten. I did glance at the GPG site > earlier, and it appears they only support the version of Outlook in > Office 2003. > > I have a feeling this is going to get messy, at least on the deployment > end. This may alleviate some of the mess: http://blog.cumps.be/gpg-in-outlook-2007-outlookgnupg/ -- // Todd
From: Per Jessen on 21 Apr 2009 11:38 Bob McConnell wrote: > From: tedd >> At 8:39 AM -0400 4/21/09, Bob McConnell wrote: >>>I have been asked by a product manager what our options are for >>>encrypting email messages with sensitive information. We are >>>currently using PHPMailer to send email. What can be done to encrypt= >>>those messages? Can it be done without OOP? >>=20 >> From within a php script, it's not a problem to encrypt a text >> string >=20 >> and send it as email. The sending of the email and the encrypting th= e >> contents are two different issues. You may want to look at it that >> way. >=20 > But can it be done so the recipient's email client will automatically= > open and decrypt the message? How do you make it as seamless as > possible for them, preferably so they don't even realize the message > was encrypted? See S/MIME.=20 /Per --=20 Per Jessen, Z=C3=BCrich (20.2=C2=B0C)
From: Per Jessen on 21 Apr 2009 11:42 tedd wrote: > However, if your client wants to send stuff to anyone and have it > encrypted without knowing who the receiver is going to be, then there= > is no way to do this.=20 As long as the intended receiver has the appropriate key to decrypt the= email, the client does not need to know the intended receiver as such.=20= > Both the sender and receiver must agree on the encrypting mechanism S/MIME. /Per --=20 Per Jessen, Z=C3=BCrich (20.5=C2=B0C)
First
|
Prev
|
Next
|
Last
Pages: 1 2 3 Prev: Soap Client Help Next: Static and/or Dynamic site scraping using PHP |