r51690 - in /branches/upstream/libgnupg-perl/current: ./ test/

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Thu Jan 28 19:59:04 UTC 2010


Author: carnil-guest
Date: Thu Jan 28 19:57:40 2010
New Revision: 51690

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51690
Log:
[svn-upgrade] Integrating new upstream version, libgnupg-perl (0.11)

Added:
    branches/upstream/libgnupg-perl/current/test/file-tie.txt.asc
    branches/upstream/libgnupg-perl/current/test/file.txt.asc
    branches/upstream/libgnupg-perl/current/test/file.txt.cipher
    branches/upstream/libgnupg-perl/current/test/file.txt.clear
    branches/upstream/libgnupg-perl/current/test/file.txt.dist.gpg
    branches/upstream/libgnupg-perl/current/test/file.txt.gpg
    branches/upstream/libgnupg-perl/current/test/file.txt.plain
    branches/upstream/libgnupg-perl/current/test/file.txt.plain2
    branches/upstream/libgnupg-perl/current/test/file.txt.plain3
    branches/upstream/libgnupg-perl/current/test/file.txt.sgpg
    branches/upstream/libgnupg-perl/current/test/file.txt.sig
    branches/upstream/libgnupg-perl/current/test/key.pub
    branches/upstream/libgnupg-perl/current/test/key.sec
    branches/upstream/libgnupg-perl/current/test/keyring.pub
    branches/upstream/libgnupg-perl/current/test/pipe-file.txt.gpg
    branches/upstream/libgnupg-perl/current/test/pubring.gpg   (with props)
    branches/upstream/libgnupg-perl/current/test/pubring.gpg~   (with props)
    branches/upstream/libgnupg-perl/current/test/random_seed   (with props)
    branches/upstream/libgnupg-perl/current/test/secring.gpg   (with props)
    branches/upstream/libgnupg-perl/current/test/trustdb.gpg   (with props)
Modified:
    branches/upstream/libgnupg-perl/current/ChangeLog
    branches/upstream/libgnupg-perl/current/GnuPG.pm
    branches/upstream/libgnupg-perl/current/GnuPG.spec
    branches/upstream/libgnupg-perl/current/META.yml
    branches/upstream/libgnupg-perl/current/NEWS

Modified: branches/upstream/libgnupg-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/ChangeLog?rev=51690&op=diff
==============================================================================
--- branches/upstream/libgnupg-perl/current/ChangeLog (original)
+++ branches/upstream/libgnupg-perl/current/ChangeLog Thu Jan 28 19:57:40 2010
@@ -1,3 +1,11 @@
+2010-01-27  version 0.11 Mark Frost
+
+    * The module should not properly handle the situation where a key is 
+    setup with a blank passphrase, as long as passphrase => undef is provided 
+    (or left out)
+    * Fixed an issue where STDIN and STDOUT cannot be overridden in an 
+    Apache environment. 
+
 2009-05-07  version 0.10 Robbie Bow
 
     * Changes in 0.09_0{1-3} being released in to the wild proper.

Modified: branches/upstream/libgnupg-perl/current/GnuPG.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/GnuPG.pm?rev=51690&op=diff
==============================================================================
--- branches/upstream/libgnupg-perl/current/GnuPG.pm (original)
+++ branches/upstream/libgnupg-perl/current/GnuPG.pm Thu Jan 28 19:57:40 2010
@@ -821,6 +821,13 @@
 throwing an exception (using croak).  If you wan't to catch
 errors you will have to use eval.
 
+When handed in a file handle for input or output parameters
+on many of the functions, the API attempts to tie that 
+handle to STDIN and STDOUT. In certain persistent environments 
+(particularly a web environment), this will not work. This 
+problem can be avoided by passing in file names to all 
+relevant parameters rather than a Perl file handle. 
+
 There is also a tied file handle interface which you may find more
 convenient for encryption and decryption. See GnuPG::Tie(3) for details.
 
@@ -867,8 +874,6 @@
 if there is an error. It is a good idea to press random keys on the
 keyboard while running this methods because it consumes a lot of
 entropy from the computer. Here are the parameters it accepts :
-
-    Ex: $gpg->
 
 =over
 

Modified: branches/upstream/libgnupg-perl/current/GnuPG.spec
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/GnuPG.spec?rev=51690&op=diff
==============================================================================
--- branches/upstream/libgnupg-perl/current/GnuPG.spec (original)
+++ branches/upstream/libgnupg-perl/current/GnuPG.spec Thu Jan 28 19:57:40 2010
@@ -1,6 +1,6 @@
 Summary: Perl interface to the Gnu Privacy Guard
 Name: GnuPG
-Version: 0.09
+Version: 0.11
 Release: 1c
 Source: http://www.cpan.org/modules/by-module/GnuPG/%{name}-%{version}.tar.gz
 Copyright: GPL
@@ -41,6 +41,10 @@
 %doc README ChangeLog NEWS
 
 %changelog
+* Wed Jan 27 2010  Mark B. Frost <mark.frost at icainformatics.com> 
+  [0.11-1c]
+- Updated to version 0.11.
+
 * Fri Jun 08 2001  Francis J. Lacoste <francis.lacoste at Contre.COM> 
   [0.09-1c]
 - Updated to version 0.09.

Modified: branches/upstream/libgnupg-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/META.yml?rev=51690&op=diff
==============================================================================
--- branches/upstream/libgnupg-perl/current/META.yml (original)
+++ branches/upstream/libgnupg-perl/current/META.yml Thu Jan 28 19:57:40 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               GnuPG
-version:            0.10
+version:            0.11
 abstract:           ~
 author:  []
 license:            unknown

Modified: branches/upstream/libgnupg-perl/current/NEWS
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/NEWS?rev=51690&op=diff
==============================================================================
--- branches/upstream/libgnupg-perl/current/NEWS (original)
+++ branches/upstream/libgnupg-perl/current/NEWS Thu Jan 28 19:57:40 2010
@@ -1,3 +1,10 @@
+----------------------------------
+Noteworthy changes in version 0.11 (2010-01-27)
+----------------------------------
+
+	* Module can now run in Apache environment.
+        * Fix  Allows undef passphrases (for keys without them)
+
 ----------------------------------
 Noteworthy changes in version 0.09 (2001-06-08)
 ----------------------------------

Added: branches/upstream/libgnupg-perl/current/test/file-tie.txt.asc
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file-tie.txt.asc?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file-tie.txt.asc (added)
+++ branches/upstream/libgnupg-perl/current/test/file-tie.txt.asc Thu Jan 28 19:57:40 2010
@@ -1,0 +1,13 @@
+-----BEGIN PGP MESSAGE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+hQEOA/61oVAN4OryEAP9H0hEswjGJrc4/EzUgA3hZ5AXkFtK9uLAX9ZI6Mzqe9o0
+5EhBIGB0qFCvZizgDcDzJCldju7VoiiGheJBtNLJ1wD0f0SkTW5zZRHFgE9vyb3g
+cNims0Oi51DLn+0mwSg2zrQxrNcefRRjlsNm1ZZQs5rLt0sPepjeHFDrbPMRWa8D
+/0v4SBThu/Aozy+MCxiXRbdjD5NxB1NXaPPdk1wyw5ghjUK9GVTfzSVvfabkjlTh
+1nfxvPjq9kBU3MbMjhbOc0nL9tmG3XRXA4WZ86R+4eglCjkoDvemNSHqf98UmKw7
+94moiAp8PA3bM6gbS2h8gDh5q7K8bGjCc9ZnnzX6YOES0kgBqxlV6rGvEPwF+zeb
+kAjKLRV/euNBU0EP16LXJWfrUt5JmxpW2Eski4Le7ht6wVYCBBJTnpUA+H0Fz9IX
+WzfEh+G5ZQGzyQI=
+=IP2n
+-----END PGP MESSAGE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.asc
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.asc?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.asc (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.asc Thu Jan 28 19:57:40 2010
@@ -1,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+iD8DBQBLYI0gE5AAG/mbdVIRAoKKAJ99BafaNJkmMtISSeRSTr5GoDw/MwCgoZ6E
+B2UPltgsFPSmfmK4e690Q+o=
+=UZ7Q
+-----END PGP SIGNATURE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.cipher
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.cipher?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.cipher (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.cipher Thu Jan 28 19:57:40 2010
@@ -1,0 +1,7 @@
+-----BEGIN PGP MESSAGE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+jA0EAwMC9RDYxeXNUQlgySt6l8HXXe1KXnXcGll30nlmjKh1H/wRoXB0Q52eGwhy
+EdrfFNgsvE0X2CZN
+=mJ0x
+-----END PGP MESSAGE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.clear
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.clear?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.clear (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.clear Thu Jan 28 19:57:40 2010
@@ -1,0 +1,11 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+This is a test
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+iD8DBQFLYI0gE5AAG/mbdVIRAjZMAJ97oGKqT80Tte1tyeWivJY8PF3RyQCcCRIV
+G8vUfa7ChGK/Miz5sPnapvs=
+=nBrA
+-----END PGP SIGNATURE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.dist.gpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.dist.gpg?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.dist.gpg (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.dist.gpg Thu Jan 28 19:57:40 2010
@@ -1,0 +1,14 @@
+-----BEGIN PGP MESSAGE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+hQEOA6dZ6qpOo30+EAP/epj6oWPgjm0sPj1GNoCkxuKoWEmGwqh/DyYuqDyfnqBV
+4za0vAmIuzC6320t0BgNbEnt7VRdyKkKLkGycXkO7/hAOjpKWioTb2GFudz8uFCj
+4LJeJ7Ad5pZUjPHk6j8skTG5NgR23INSNp5Xy/WOJeJqnGKl5o+dbEe2SPoYonoD
+/01WAw03QRrx3lWYYqmrBK1civR1K4F4ZruStXpTVAgLoADT9nGBQ0AC79SKBjJl
+x7LtdiHR07odqm+obmRYiu+K0vEZGPLVutTMceonjJZGEk/QOMT7S8zTK5AiR3rV
+IRZhVQ7Z5iSfaMckOf88LHfK1tZ5TF/RCTocFsqUw5Bh0psByeQcOD4TuOGnEwMs
+bnb/tfCJ+uZJ7FuI129KcPfWoTQFsiFt3OKYytTIX7j2vy6OFKmEhAeUkC8gOfcO
+yR+QZeucgw/g+vcW2dnIQJgr7ZE6xJQkroux2DVZsnimuFqiGf88NiAvDD7EIWQ+
+DtZlsKiI7revwRzaT+agttZ0IFDjL9GBNBhCm1aNiBfJsY4YGE8tN8uILLq2LQ==
+=Gjl7
+-----END PGP MESSAGE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.gpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.gpg?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.gpg (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.gpg Thu Jan 28 19:57:40 2010
@@ -1,0 +1,13 @@
+-----BEGIN PGP MESSAGE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+hQEOA/61oVAN4OryEAQAi/jrtA9m/GJTMv4WRuYIfjzxocA2lJ5Hcqzpa41QYHfd
+Bl9818gLrv4UAPDQvDaSsXocaSs/AGGEISBNCcvLk1muOhdxE6w9MYlZsX9lrvtu
+Xzb67EAUtH0WUs0tEmUTxodWVjLgnFWqs46lQqZoCnyc4UBs4XcRg+O4Ys/zSSwD
+/ikCCPipXqpN2IL9pfXAnFY/l7hz6aWC4s5RFjqz3O/VkYJvTmpK6IEw0gSU5jlQ
+oG3l6fSh/D2fImGhoqQ0UY4zCP8Y5oJuP7W2BKEuMWwMyD3yvAbLGMYdebuK1G1f
+1c8VR27Zklqp9JHcSH0hXbUlCsA31uffdCJEMs7xFanK0lAB8pnbOOLUrg5EKYC0
+APe/kECMYCpf/pNYCoHbv98+NeAUKRLsDXh6C4YgwVLq+kjPHkwCbVzQsgCmmaEM
+xnFsQ17OYlcmLw2IDHsJW6EA8A==
+=KJOM
+-----END PGP MESSAGE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.plain
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.plain?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.plain (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.plain Thu Jan 28 19:57:40 2010
@@ -1,0 +1,1 @@
+This is a test

Added: branches/upstream/libgnupg-perl/current/test/file.txt.plain2
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.plain2?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.plain2 (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.plain2 Thu Jan 28 19:57:40 2010
@@ -1,0 +1,1 @@
+This is a test

Added: branches/upstream/libgnupg-perl/current/test/file.txt.plain3
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.plain3?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.plain3 (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.plain3 Thu Jan 28 19:57:40 2010
@@ -1,0 +1,1 @@
+This is a test

Added: branches/upstream/libgnupg-perl/current/test/file.txt.sgpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.sgpg?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.sgpg (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.sgpg Thu Jan 28 19:57:40 2010
@@ -1,0 +1,14 @@
+-----BEGIN PGP MESSAGE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+hQEOA/61oVAN4OryEAP/bRurQ0Q4sb01pIiWY0zMLZ0ymj58pHdtioCa77GfJyjN
+/JEA4iVmPG+QJ2UphhX0AmU/tWWQUa5Cc/A0X6o6YDlluvKO5f3ObmOuB+O4JDXS
+VOcovtBjOXzixAwCo6YA7ZEWGu35o+trOtv/nsiJ6PF2eNi4Jd2KxSgmnqDQ9X0D
+/3OGHlsoolL2J4h2POIC023YzTuy/L1EMfHkjlyidczQ8eMrPzYQzUDo7/nqDbQa
+6dUPtrShqsyvWPB/Tqk8jne5n7CUhdqzg+QOoyrYYoUqaUYvHSHeBXpj/Ev96ZMr
+bp02ta3EAoX7i7HfC1y+TKQ8DEqKnAIV2DJ/+DbHtLNk0psB8CRDAWcK22rZoE7r
++mJjMLv1zSn3+5QUCUo1WTkoJHXY2vhgJWKZcTV8FjIlwhMK0pSM7leK4PSHLMQ2
+rTe7GnAPwx1KNs4Rlo/v7xYwR+gf+W4aWG3R4x0jlmjC2/kdWpGK3voSeaCjwMQV
+T5mq4uBkfuEwGyRDtKpunBzO8vMPgJ1T+xuQ3eqHQgr6KnpUnlkzkstSsxhO9A==
+=xHx4
+-----END PGP MESSAGE-----

Added: branches/upstream/libgnupg-perl/current/test/file.txt.sig
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/file.txt.sig?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/file.txt.sig (added)
+++ branches/upstream/libgnupg-perl/current/test/file.txt.sig Thu Jan 28 19:57:40 2010
@@ -1,0 +1,8 @@
+-----BEGIN PGP MESSAGE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+owGbwMvMwCQoPIFB+ufs0iDGNbJJHGmZOal6JRUl3gm9CiEZmcUKQJSoUJJaXMLV
+Yc/MygASh2kQZGrqYpif6/LhTMaHYuklkz5mHbT2Etv+RtGGYX59YlKYfk53gd0b
+O/HO1S9Vmq+eMgQA
+=GDs1
+-----END PGP MESSAGE-----

Added: branches/upstream/libgnupg-perl/current/test/key.pub
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/key.pub?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/key.pub (added)
+++ branches/upstream/libgnupg-perl/current/test/key.pub Thu Jan 28 19:57:40 2010
@@ -1,0 +1,24 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+mQGiBEtgjR8RBACc7m038IPxI/RjqWUj0ii3fVoPvTWHrlnsZIMhM2BHi4OpFMbJ
+rMUkE8+9TkAy1QjCzUaMfc2jl5JLU7GOeOQhI6r6rcWsN/4QJEG6L38Jy/lWqNGz
+A+R1T8opjcFfYmwlilQZCX/i76sup9FvsXspQPrl78lqoK5sdIMN4AnXHwCgwHdy
+qDSFZjfr7qlrThcSDu1RgEsD/3y+BHClUGCbQFp/0+a+gqahOWPreSS9V8xTLDeQ
+AMsRBL3nFZTooJ3VJ4USEesWYeT9gaxPnkNpZtFPX2j8MrqW0pR0RpXsNpqx7KI4
+o4Rwifp1/ZyrZsqlYeRWSFOdodbjIhTjVVOIL/bcxeEseg56f8nosFohWwbJ36u3
+f4D1A/9JwFBPXwoEzCA3Y8dIEVKvXrbE+x0Pk8ljSezO7jyJmvASk44qJacv14UH
+jVTN4djNj7Gs/OFk50QS1yuyurTwrQj22TKSn6d+cffuF/nbzJqKrJqFLA+KXtNr
+ArBC9P5VMKdAO1VRgbath6TaHIkULWD56JFYPJsmANtRmf2s8LQKR251UEcgVGVz
+dIhgBBMRAgAgBQJLYI0fAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQE5AA
+G/mbdVIqLACfa2UmgjYtc/d4sbohmfMPTSU3Nr4An1WSC7OAFy/BX7SGNeRRlLX1
+wap5uQENBEtgjSAQBACZv09uwHourVpOZlibffjHIqWc3FtyMZhrPFKTg/PxM272
+teqAxde8ACgekkYg1gJ+XSJLdLfPb5bbaGF+2fcQpwPks047g/fz9gdwBHLifv9L
+oG74AP0KCIV4ZADrwlNXVXzXVEkQFH8h10LZYmzbLfBDoavcbkYsf0U+unxV2wAD
+BgP/bnoZBnfZQ5s+EUGk/i05TuzTQ4VrmCevg0tVp8QY0bjhtqEKoTqNVQnaxgM6
+Tm72XDhYEHt8VZBbIXyFh3SrneKwzlUkmkBm1iYRqAoDuPCM29iayzVZywJAjGO6
+PTqtpkOHUjVDOj2q95sGNrzU2je1mhRWP2PCROAUjkEOaaSISQQYEQIACQUCS2CN
+IAIbDAAKCRATkAAb+Zt1UtzZAKCV+DSssFaeMZZnWunDDV/Xi8uUOQCfchPLOIfj
+7puVgOioDc/eZvWu46s=
+=2Ohh
+-----END PGP PUBLIC KEY BLOCK-----

Added: branches/upstream/libgnupg-perl/current/test/key.sec
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/key.sec?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/key.sec (added)
+++ branches/upstream/libgnupg-perl/current/test/key.sec Thu Jan 28 19:57:40 2010
@@ -1,0 +1,27 @@
+-----BEGIN PGP PRIVATE KEY BLOCK-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+lQHhBEtgjR8RBACc7m038IPxI/RjqWUj0ii3fVoPvTWHrlnsZIMhM2BHi4OpFMbJ
+rMUkE8+9TkAy1QjCzUaMfc2jl5JLU7GOeOQhI6r6rcWsN/4QJEG6L38Jy/lWqNGz
+A+R1T8opjcFfYmwlilQZCX/i76sup9FvsXspQPrl78lqoK5sdIMN4AnXHwCgwHdy
+qDSFZjfr7qlrThcSDu1RgEsD/3y+BHClUGCbQFp/0+a+gqahOWPreSS9V8xTLDeQ
+AMsRBL3nFZTooJ3VJ4USEesWYeT9gaxPnkNpZtFPX2j8MrqW0pR0RpXsNpqx7KI4
+o4Rwifp1/ZyrZsqlYeRWSFOdodbjIhTjVVOIL/bcxeEseg56f8nosFohWwbJ36u3
+f4D1A/9JwFBPXwoEzCA3Y8dIEVKvXrbE+x0Pk8ljSezO7jyJmvASk44qJacv14UH
+jVTN4djNj7Gs/OFk50QS1yuyurTwrQj22TKSn6d+cffuF/nbzJqKrJqFLA+KXtNr
+ArBC9P5VMKdAO1VRgbath6TaHIkULWD56JFYPJsmANtRmf2s8P4DAwJFOoMyiVYN
+RGCUlpUjFW+JwH3SO2RR768iVh4Ca1DgOdBCnOsK53eV4nCeTPAMo9ejcXhYfRiX
+gRqFALQKR251UEcgVGVzdIhgBBMRAgAgBQJLYI0fAhsDBgsJCAcDAgQVAggDBBYC
+AwECHgECF4AACgkQE5AAG/mbdVIqLACfa2UmgjYtc/d4sbohmfMPTSU3Nr4An1WS
+C7OAFy/BX7SGNeRRlLX1wap5nQFYBEtgjSAQBACZv09uwHourVpOZlibffjHIqWc
+3FtyMZhrPFKTg/PxM272teqAxde8ACgekkYg1gJ+XSJLdLfPb5bbaGF+2fcQpwPk
+s047g/fz9gdwBHLifv9LoG74AP0KCIV4ZADrwlNXVXzXVEkQFH8h10LZYmzbLfBD
+oavcbkYsf0U+unxV2wADBgP/bnoZBnfZQ5s+EUGk/i05TuzTQ4VrmCevg0tVp8QY
+0bjhtqEKoTqNVQnaxgM6Tm72XDhYEHt8VZBbIXyFh3SrneKwzlUkmkBm1iYRqAoD
+uPCM29iayzVZywJAjGO6PTqtpkOHUjVDOj2q95sGNrzU2je1mhRWP2PCROAUjkEO
+aaT+AwMCRTqDMolWDURg6Kti746ZSPfbRk8XQPLqFOODtJP3xRCPsDm99M2JBy5q
+N8AfZPQMTokdN/brp5CvvnQ5nFRcCW4yeyFDVBCISQQYEQIACQUCS2CNIAIbDAAK
+CRATkAAb+Zt1UtzZAJ9Qnq6hdEv2m+2hK/ggY1GrsdjLmgCgixLlZH43ezR0tLkn
+ouen7GUKHdA=
+=QwNV
+-----END PGP PRIVATE KEY BLOCK-----

Added: branches/upstream/libgnupg-perl/current/test/keyring.pub
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/keyring.pub?rev=51690&op=file
==============================================================================
--- branches/upstream/libgnupg-perl/current/test/keyring.pub (added)
+++ branches/upstream/libgnupg-perl/current/test/keyring.pub Thu Jan 28 19:57:40 2010
@@ -1,0 +1,64 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+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
+slT5GZ/r5dL36AcPK9+LKGc271i8dmmr5xtsllbMZF6iLfp9lN1P06g1i9aylYW6
+88ZcbXQfh/btg17hcdy/qPkIYmzklP4Ph7mYMxEPVJa6JfKpDaLrsyDpZRZJv/SV
+raod2eKRazrIud+iB8A/AKCa4Dpf5z6pxPZWLYbNU43I2xbCVQP/bquPBOGJ1zAQ
+EMRvH4cAFlod2jLETH8uwyAWLEHJQRgQU0ODV4yIfcYx9KGwLUkn25NvmYgdFlIJ
+sbUu5Jg+eycp87LiHBTebNTKH+ae6/C1aaCli5EXFPqRHa+H9yfIJqqeQToVdWLv
+qVNayPJ0b1JBffP/XK9JP+GZsORrdUcD/R24doJI4rtBRiGYk63TTppWqYBdjhy6
+uxywrGRw366qubz6hPsv4QT+XrJmsKV6f/MP9Vjv6pBJKu+rL/Z/BGU/Z12k5YfL
+EYkMQtHrJus3GS+J7gjyjTQBLNTlxRDrL/SVntJBJiv3fL8eFNZecMBGSmSFyhgB
+5umHC3ejcROQtENpTlNMaW51eCBEaXN0cmlidXRpb24gTWFpbnRhaW5lciA8RGlz
+dHJpYnV0aW9uLU1haW50YWluZXJAaU5zdS5DT00+iFQEExECABUFAjeVz7YDCwoD
+AxUDAgMWAgECF4AACgkQsuIaXDN9LGIxpwCXbSHicSJeEdhQvA6PViL5tFSlLgCd
+GIVQUaObPTVd9CiWktNlfTYoOVGIRgQQEQIABgUCN5oliAAKCRBl6psRqh/+DdI1
+AJ9T0dtVyV6KwgVjl3wKmVPrucfywwCeO7POD4V5STJUqRJgmadrbOg7+F25AQ0E
+N5XP0RAEANerKk7yyv1KOi1QVucPlRmfk3pL1u4YI66caQc83URjvvNWw2uVLz/u
+0J1d/Su7NH3p12dA9SKoQLeH51cYXpLxJ+dnQJ4zArM8yJMDXP/Tl69M+znsvtCt
+rFwYxhhLfM4Yroc5OGsesIvw058S2zZv6bqKRglt97+mAtiw3ZWfAAMFA/94TsbM
+6nYxIZF5piTlYCUww8drI9nh0IgG8OuNy3UKwneJja3gc1zdtaKZ9okEIseZ47yy
+zyCxELe+xWZyNV/9kZTOOgJYKc4r8ZE3VjvDdxT2yh/T1rET8rzRGuw9yGw3/aWb
+HCROswDY6tz176Q2tKCyNVkR9lfbyoFHwRRXaohGBBgRAgAGBQI3lc/RAAoJELLi
+GlwzfSxiR/cAn3L3mjf3mKoK6snQVt7K5Q7BzC0EAJ0ZhkgTysbbsIttaI+aGncU
+GUaRXA==
+=0RWW
+-----END PGP PUBLIC KEY BLOCK-----

Added: branches/upstream/libgnupg-perl/current/test/pipe-file.txt.gpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/pipe-file.txt.gpg?rev=51690&op=file
==============================================================================
    (empty)

Added: branches/upstream/libgnupg-perl/current/test/pubring.gpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/pubring.gpg?rev=51690&op=file
==============================================================================
Binary file - no diff available.

Propchange: branches/upstream/libgnupg-perl/current/test/pubring.gpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: branches/upstream/libgnupg-perl/current/test/pubring.gpg~
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/pubring.gpg%7E?rev=51690&op=file
==============================================================================
Binary file - no diff available.

Propchange: branches/upstream/libgnupg-perl/current/test/pubring.gpg~
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: branches/upstream/libgnupg-perl/current/test/random_seed
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/random_seed?rev=51690&op=file
==============================================================================
Binary file - no diff available.

Propchange: branches/upstream/libgnupg-perl/current/test/random_seed
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: branches/upstream/libgnupg-perl/current/test/secring.gpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/secring.gpg?rev=51690&op=file
==============================================================================
Binary file - no diff available.

Propchange: branches/upstream/libgnupg-perl/current/test/secring.gpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: branches/upstream/libgnupg-perl/current/test/trustdb.gpg
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgnupg-perl/current/test/trustdb.gpg?rev=51690&op=file
==============================================================================
Binary file - no diff available.

Propchange: branches/upstream/libgnupg-perl/current/test/trustdb.gpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream




More information about the Pkg-perl-cvs-commits mailing list