I am trying to run GnuPG encrypt and decrypt functions from a PHP
script on a Win2k machine. I have tried several variations to no
avail. Basically what I want to be able to do is something like this:
<?php
$cmdStr = 'C:\\GnuPG\\gpg -r recipient --encrypt file2encrypt.tx t';
exec($cmdStr);
?>
Has anyone had any success with this?
Scott
script on a Win2k machine. I have tried several variations to no
avail. Basically what I want to be able to do is something like this:
<?php
$cmdStr = 'C:\\GnuPG\\gpg -r recipient --encrypt file2encrypt.tx t';
exec($cmdStr);
?>
Has anyone had any success with this?
Scott
Comment