pkgsrc/security/p5-GnuPG-Interface/patches/patch-aa
tv c0eb497c1f GnuPG::Interface and its associated modules are designed to provide an
object-oriented method for interacting with GnuPG, being able to perform
functions such as but not limited to encrypting, signing, decryption,
verification, and key-listing parsing.
2005-01-10 18:22:22 +00:00

29 lines
552 B
Text

$NetBSD: patch-aa,v 1.1.1.1 2005/01/10 18:22:23 tv Exp $
--- lib/GnuPG/Interface.pm.orig Fri Aug 15 14:37:00 2003
+++ lib/GnuPG/Interface.pm
@@ -690,6 +690,15 @@ sub recv_keys( $% )
+sub search_keys( $% )
+{
+ my ( $self, %args ) = @_;
+ return $self->wrap_call( %args,
+ commands => [ '--search-keys' ] );
+}
+
+
+
sub send_keys( $% )
{
my ( $self, %args ) = @_;
@@ -885,6 +894,8 @@ This methods work as described in L<Clas
=item export_keys( % )
=item recv_keys( % )
+
+=item search_keys( % )
=item send_keys( % )