Re: [PHP] PGP 5 start up issue

2005-11-08 Thread Richard Lynch
On Fri, November 4, 2005 8:46 pm, Vizion wrote: php 5 on windows xp with apache 2 and mysql 5. Php start up unable to load dynamic library: E:\php\ext\php_bz2.dll with error 'The specified module could not be found' same for and php_yaz.dll I have php5ts.dll in both E:\php\ and E:\php\ext

Re: [PHP] PGP 5 start up issue

2005-11-06 Thread Unknown Unknown
I don't mean the php.ini file, I mean the extension directive setting in php.ini

Re: [PHP] PGP 5 start up issue

2005-11-06 Thread Vizion
On Sunday 06 November 2005 12:14, the author Unknown Unknown contributed to the dialogue on- Re: [PHP] PGP 5 start up issue: I don't mean the php.ini file, I mean the extension directive setting in php.ini Yep I thought that was what you meant -- it is not the cause.. I should have posted

Re: [PHP] PGP 5 start up issue

2005-11-05 Thread Unknown Unknown
On 11/4/05, Vizion [EMAIL PROTECTED] wrote: php 5 on windows xp with apache 2 and mysql 5. Php start up unable to load dynamic library: E:\php\ext\php_bz2.dll with error 'The specified module could not be found' same for and php_yaz.dll I have php5ts.dll in both E:\php\ and E:\php\ext I

Re: [PHP] PGP 5 start up issue

2005-11-05 Thread Unknown Unknown
On 11/5/05, Unknown Unknown [EMAIL PROTECTED] wrote: On 11/4/05, Vizion [EMAIL PROTECTED] wrote: php 5 on windows xp with apache 2 and mysql 5. Php start up unable to load dynamic library: E:\php\ext\php_bz2.dll with error 'The specified module could not be found' same for and

Re: [PHP] PGP 5 start up issue

2005-11-05 Thread Vizion
On Saturday 05 November 2005 08:58, the author Unknown Unknown contributed to the dialogue on- Re: [PHP] PGP 5 start up issue: On 11/5/05, Unknown Unknown [EMAIL PROTECTED] wrote: On 11/4/05, Vizion [EMAIL PROTECTED] wrote: php 5 on windows xp with apache 2 and mysql 5. Php start up

[PHP] PGP 5 start up issue

2005-11-04 Thread Vizion
php 5 on windows xp with apache 2 and mysql 5. Php start up unable to load dynamic library: E:\php\ext\php_bz2.dll with error 'The specified module could not be found' same for and php_yaz.dll I have php5ts.dll in both E:\php\ and E:\php\ext I had a similar problem for php_mcrypt which was

[PHP] pgp-gd and netpbm (pamdice)

2005-07-29 Thread Michelle Konzack
Hello *, I like to upload new topographical maps into my System and split it into smaller parts. Curently I am using exec() to do the Job, but like to use php native tools to do the Job. Also I need better naming schemes as netpbm (pamdice) do. Exactly I will like to give a horizontal vertical

[PHP] PGP commands problem

2004-10-04 Thread Alexandru E. Ungur
Hi all, I have a little problem with signing e-mails from PHP. The little piece of code giving me headaches is this: ?php $data = some data here...; $tmp_file = tempnam('/tmp','PGP'); putenv(PGPPATH=/home/nobody/.pgp); putenv(HOME=/home/nobody); exec(echo . escapeshellarg($data) .

[PHP] pgp form handler will not display data

2003-12-23 Thread Jack E. Wasserstein, DDS, Inc.
There must be something obvious that I am missing but I cant get the php form handler with the script below to display the vairables. The form which sends this data has the correct field names. I am also using the get action, so I can see the variables and values so I know that they are being

Re: [PHP] pgp form handler will not display data

2003-12-23 Thread David T-G
Jack -- [Aha ... I see that you provide the calling URL in this post, which explains the near-duplication. One question answered; a million to go!] ...and then Jack E. Wasserstein, DDS, Inc. said... % % There must be something obvious that I am missing but I cant get the php ... % % output

[PHP] PGP?

2003-06-06 Thread Ben Cheng
Any way in PHP to grab form info and then encrypt it with PGP before sending it out as an email? -Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PGP and PHP together???

2003-02-12 Thread MIKE YRABEDRA
Is it possible to use php and pgp together? Are there any good tutorials out there? -- Mike Yrabedra President 323 Enterprises Home of The MacDock and The MacSurfshop [http://macdock.com] : [http://macsurfshop.com] VOICE: 770.382.1195 iChat/AIM: ichatmacdock

Re: [PHP] PGP and PHP together???

2003-02-12 Thread David T-G
Mike -- ...and then MIKE YRABEDRA said... % % Is it possible to use php and pgp together? Are there any good tutorials out % there? It's absolutely possible. What do you want to do? The only thing that most people find a little tricky is that you have to think as the web server and not as

Re: [PHP] PGP and PHP together???

2003-02-12 Thread Jason Sheets
There is a PHP extension named GPGext for PHP, it uses the gnupg made easy library to make gpg functions available to PHP without executing external programs. It is available at: http://www.sourceforge.net/projects/gpgext/ Jason On Wed, 2003-02-12 at 20:34, David T-G wrote: Mike -- ...and

Re: [PHP] PGP and PHP together???

2003-02-12 Thread David T-G
Jason, et al -- ...and then Jason Sheets said... % % There is a PHP extension named GPGext for PHP, it uses the gnupg made % easy library to make gpg functions available to PHP without executing % external programs. Way cool! I'm not suprised, but I hadn't heard of it before. Can't wait to

[PHP] PGP signing text from called from PHP

2003-01-18 Thread {R}ichard Ashton
Using PHP 4.1.2 I need to PGP sign a piece of text and detached the signature. I have read a lot in the archives and and about the better exec() calls in 4.3. However I cannot find a reference that indicates the best way to pass a set of arguments out of a PHP script to PGP. I need to use

Re: [PHP] PGP/PHP

2002-12-16 Thread David T-G
Jonathan -- ...and then Jonathan said... % % I have necessary PGP client software on my machine and have tested the % functionality of PGP from my site, however, I want to know how to use % PHP to send a PGP email. 1) Do you know how to use pgp to encrypt and decrypt a file? 2) Do you know how

Re: [PHP] PGP/PHP

2002-12-16 Thread Jason Sheets
There is actually a gpg PHP module available that makes gpg easy functions available to PHP so you do not need to execute command line programs on plain text files. Remember if you write your data to a plain text file it will temporarily be vunerable to interception by anyone with read access to

[PHP] PGP/PHP

2002-12-15 Thread Jonathan
I have necessary PGP client software on my machine and have tested the functionality of PGP from my site, however, I want to know how to use PHP to send a PGP email. This is the scenario, I have a shopping cart which directs to SSL, then while in SSL, the customer will input their information,

[PHP] PGP/PHP

2002-12-15 Thread Jonathan
I have necessary PGP client software on my machine and have tested the functionality of PGP from my site, however, I want to know how to use PHP to send a PGP email. This is the scenario, I have a shopping cart which directs to SSL, then while in SSL, the customer will input their information,

RE: [PHP] PHP PGP

2002-05-24 Thread Dave MacRae
This is not what I need. I'm not building a userbase to authenticate with. I'm holding a database of users and passwords that I need to keep. There is no authentication done against these user/password pairs. I don't want to keep the passwords in free text since if someone breaks in,

RE: [PHP] PHP PGP

2002-05-23 Thread Boaz Yahav
Horton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 5:49 PM To: Boaz Yahav; PHP General (E-mail) Subject: RE: [PHP] PHP PGP calculate a hash of the pass the user enters and store that. When the user enters a pass again to get the data, then hash this pass and see if it matches

[PHP] PHP PGP

2002-05-22 Thread Boaz Yahav
Hi I need to encrypt some fields in my mysql database. I need to ask a user for a pass when he enters the data, encrypt it and show him the data only if he enters the pass again. I know that pgp has a module that works with passwords instead of keys. I never tried this on Linux though.

RE: [PHP] PHP PGP

2002-05-22 Thread John Horton
-Original Message- From: Boaz Yahav [mailto:[EMAIL PROTECTED]] Sent: 22 May 2002 17:43 To: PHP General (E-mail) Subject: [PHP] PHP PGP Hi I need to encrypt some fields in my mysql database. I need to ask a user for a pass when he enters the data, encrypt it and show him the data only

[PHP] Re: PHP PGP

2002-05-22 Thread Manuel Lemos
Hello, On 05/22/2002 01:43 PM, Boaz Yahav wrote: Hi I need to encrypt some fields in my mysql database. I need to ask a user for a pass when he enters the data, encrypt it and show him the data only if he enters the pass again. I know that pgp has a module that works with passwords

Re: [PHP] PHP PGP

2002-05-22 Thread Analysis Solutions
Boaz: On Wed, May 22, 2002 at 04:48:59PM +0100, John Horton wrote: calculate a hash of the pass the user enters and store that. FYI, by hash he means using the md5() function. Ciao! --Dan -- PHP classes that make web design easier SQL Solution | Layout Solution

[PHP] PGP and other encryptions methods for PHP

2002-05-01 Thread Ron Dyck
I need to encrypt data in an application then mail it to a recipient where the email client must decrypt using a private key. The recipient would be using MS Outlook or another email client perhaps Eudora. What encryption techonologies are best for this? I had a brief look at OpenPGP but not

Re: [PHP] PGP

2002-04-29 Thread Richard Lynch
On Sun, 28 Apr 2002, Richard Lynch wrote: On Sat, 27 Apr 2002, Richard Lynch wrote: $test = escapeshellarg($cleartext); exec(cat $test | /usr/bin/pgpe -a -t -f -r '[EMAIL PROTECTED]' . . . ^Kb^Estdin^H^@^@^@ $cleartext is the actual text? What if you used 'echo' instead of 'cat'?

Re: [PHP] PGP

2002-04-28 Thread Miguel Cruz
On Sat, 27 Apr 2002, Richard Lynch wrote: $test = escapeshellarg($cleartext); exec(cat $test | /usr/bin/pgpe -a -t -f -r '[EMAIL PROTECTED]' . . . ^Kb^Estdin^H^@^@^@ $cleartext is the actual text? What if you used 'echo' instead of 'cat'? miguel -- PHP General Mailing List

[PHP] PGP

2002-04-27 Thread Richard Lynch
Please Cc: me on replies... I've got to be doing something stupid, because I've succeeded at this PGP (gpg, whatever) stuff before (years ago), but... I'm doing this: $test = escapeshellarg($cleartext); exec(cat $test | /usr/bin/pgpe -a -t -f -r '[EMAIL PROTECTED]'

[PHP] PGP -- PHP

2001-12-22 Thread J.Mueller, pro.vider.de GmbH
Hello Everybody, we have a problem to implement a PGP-function into a PHP-Script. PHP 4.0.6 as CGI, Apache 1.3.11, FeeBSD 4.2 a) PGP from the command line works: % pgps -ato test.sig test.txt -z passphrase b) Calling a little PHP Script $kommando = /usr/local/bin/pgps -ato test.sig test.txt

Re: [PHP] PGP -- PHP

2001-12-22 Thread Brian Clark
* J.Mueller, pro.vider.de GmbH ([EMAIL PROTECTED]) [Dec 22. 2001 10:03]: Hello Everybody, Hiya. we have a problem to implement a PGP-function into a PHP-Script. PHP 4.0.6 as CGI, Apache 1.3.11, FeeBSD 4.2 a) PGP from the command line works: % pgps -ato test.sig test.txt -z passphrase

[PHP] php + pgp (gnupg)

2001-10-18 Thread Kasper
Can i decrypt files with pgp (gnupg) with php scripts? If i can, does anybody have an example or 2? Thanx /Kasper -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] php + pgp (gnupg)

2001-10-18 Thread Evan Nemerson
Yes. Use backticks, system(), exec(), etc. For help on command line w/ GnuPG, try gpg --help. I don't have examples, but there are probably some @ hotscripts.com -- Looking for a parallel, three-dimensional explicit Eulerian grid code for astrophysical magnetohydrodynamics? Of course you

RE: [PHP] php + pgp (gnupg)

2001-10-18 Thread Joseph Blythe
-Original Message- From: Kasper [mailto:[EMAIL PROTECTED]] Sent: Friday, 19 October 2001 8:30 AM To: [EMAIL PROTECTED] Subject: [PHP] php + pgp (gnupg) Can i decrypt files with pgp (gnupg) with php scripts? If i can, does anybody have an example or 2? Thanx /Kasper -- PHP General Mailing List

Re: [PHP] PHP PGP

2001-06-29 Thread Maxim Derkachev
Hello Pepe, Thursday, June 28, 2001, 6:05:48 PM, you wrote: PL I want to encrypt mails coming from my webform with pgp. Is it possible? It is possible. Also, If you had been chosen GNUPG instead of PGP you could use the class located at

RE: [PHP] PHP PGP

2001-06-29 Thread David Price
'their userid' Then the form and php script in the Web monkey tutorial should work. Let me know if this helps and good luck. David Price -Original Message- From: Pepe Lopez [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 7:06 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP PGP Hi

RE: [PHP] PHP PGP

2001-06-29 Thread Chris Mason
Yes, here's some code, adapt to your needs. -Original Message- From: Pepe Lopez [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 10:06 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP PGP Hi there, I want to encrypt mails coming from my webform with pgp. Is it possible? regards

RE: [PHP] PHP PGP

2001-06-29 Thread Chris Mason
/bin/; var $pcmd; var $encryptcommand = gpg --encrypt --batch --no-secmem-warning; var $home = /var/www/.gnupg; } -Original Message- From: Pepe Lopez [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 10:06 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP PGP Hi there, I want

RE: [PHP] PHP PGP

2001-06-29 Thread scott [gts]
possible? yes. feasable? yes and no... 1) encrypting traffic from the user's browser to your server is extremely impractical. 2) encrypting information on the server with PGP is a whole lot easier... there are a bunch of PHP - PGP interface packages i've seen around, so do some searching

Re: [PHP] PHP PGP

2001-06-29 Thread Henrik Hansen
Pepe Lopez [EMAIL PROTECTED] wrote: Hi there, I want to encrypt mails coming from my webform with pgp. Is it possible? this hack might help you http://alt-php-faq.org/#id65 -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP] PHP PGP

2001-06-28 Thread Pepe Lopez
Hi there, I want to encrypt mails coming from my webform with pgp. Is it possible? regards, Lopez -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

Re: [PHP] PGP with MySQL

2001-05-21 Thread Joseph Blythe
the order have the decryption key on the their computer. Any comments or different ideas on this system? (I'm a different Jeff) I searched through the archives and couldn't find your message. I'm interested in this also. The PHP PGP tutorials all deal with sending e-mail using PGP. I would

[PHP] PGP with MySQL

2001-05-17 Thread Jeff
I am trying to find the maximum security for storing credit card numbers. From reading the archives someone mentioned using a PGP based encryption to encrypt the credit card number and store it into the database, and have the company that is processing the order have the decryption key on the

Re: [PHP] PGP with MySQL

2001-05-17 Thread Joseph Blythe
Jeff wrote: I am trying to find the maximum security for storing credit card numbers. From reading the archives someone mentioned using a PGP based encryption to encrypt the credit card number and store it into the database, and have the company that is processing the order have the

Re: [PHP] pgp text formatting

2001-02-19 Thread Richard Lynch
// then I place the message that is to be encrypted in a file $fp = fopen("plaintxt", "w+"); This won't scale up too well... You would be better off to use pipe (|) to shove it to the PGP program. Actually, that's still not such a hot idea... Anybody who can do "ps aux" could catch the

[PHP] pgp text formatting

2001-02-16 Thread Nicholas W. Miller
I sent this off a couple days ago, but did not see it on the list ... please excuse the traffic if you are seeing this for a second time. I am writing some code (PHP3/4 on Apache) that encrypts some text using PGP and writes it to a log_file. I am having problems getting the line breaks to

[PHP] PHP+PGP+Apache! Newbie, please help!!

2001-02-13 Thread Kevin Connolly
Hi, I'm trying to uses PGP with PHP and Apahce. I have Apache and PHP configured but am finding it difficult to find any information on how to use PGP with them! Any help would be much apreciated! Thanks, Kevin.