in reply to GnuPG::Tie.pm does this
in thread Favorite PGP module for web-to-email forms?
sub encrypt_text { use GnuPG::Tie::Encrypt; tie *CIPHER, 'GnuPG::Tie::Encrypt', armor => 1, recipient => $PUBL +IC_KEY_USER_ID || die; print CIPHER shift || die; local $/ = undef; my $ciphertext = <CIPHER> || croak "died here: $!"; close CIPHER; untie *CIPHER; return $ciphertext; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE(tilly) 1: GnuPG::Tie::Encrypt failing
by tilly (Archbishop) on Aug 19, 2000 at 03:21 UTC | |
|
RE: GnuPG::Tie::Encrypt failing (fixed)
by markjugg (Curate) on Aug 22, 2000 at 07:21 UTC | |
|
RE: GnuPG::Tie::Encrypt failing (fixed)
by markjugg (Curate) on Oct 20, 2000 at 00:39 UTC |