Bug#364065: ITP: libconvert-pem-perl -- Read/write encrypted ASN.1 PEM files for perl
Package: wnpp Severity: wishlist Owner: "Pierre-Matthieu Alamy" <[EMAIL PROTECTED]> * Package name: libconvert-pem-perl Version : 0.07 Upstream Author : Benjamin Trott <[EMAIL PROTECTED]> * URL : http://www.cpan.org/modules/by-module/Convert/ * License : Artistic Programming Lang: Perl Description : Read/write encrypted ASN.1 PEM files for perl Convert::PEM reads and writes PEM files containing ASN.1-encoded objects. The files can optionally be encrypted using a symmetric cipher algorithm, such as 3DES. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#364066: ITP: libdata-buffer-perl -- Read/write buffer class for perl
Package: wnpp Severity: wishlist Owner: "Pierre-Matthieu Alamy" <[EMAIL PROTECTED]> * Package name: libdata-buffer-perl Version : 0.04 Upstream Author : Benjamin Trott <[EMAIL PROTECTED]> * URL : http://www.cpan.org/modules/by-module/Data/ * License : Artistic Programming Lang: Perl Description : Read/write buffer class for perl Data::Buffer implements a low-level binary buffer in which you can get and put integers, strings, and other data. Internally the implementation is based on pack and unpack, such that Data::Buffer is really a layer on top of those built-in functions. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#364077: ITP: libcrypt-dsa-perl -- DSA Signatures and Key Generation for perl
Package: wnpp Severity: wishlist Owner: "Pierre-Matthieu Alamy" <[EMAIL PROTECTED]> * Package name: libcrypt-dsa-perl Version : 0.13 Upstream Author : Benjamin Trott <[EMAIL PROTECTED]> * URL : http://www.cpan.org/modules/by-module/Crypt/ * License : Artistic Programming Lang: Perl Description : DSA Signatures and Key Generation for perl Crypt::DSA is an implementation of the DSA (Digital Signature Algorithm) signature verification system. The implementation itself is pure Perl, although the heavy-duty mathematics underneath are provided by the Math::Pari library. This package provides DSA signing, signature verification, and key generation. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#364574: ITP: libtie-encryptedhash-perl -- Hashes and hashes based objects with encrypting fields for perl
Package: wnpp Severity: wishlist Owner: "Pierre-Matthieu Alamy" <[EMAIL PROTECTED]> * Package name: libtie-encryptedhash-perl Version : 1.21 Upstream Author : Vipul Ved Prakash <[EMAIL PROTECTED]> * URL : http://cpan.org/modules/by-module/Tie/ * License : Artistic Programming Lang: Perl Description : Hashes and hashes based objects with encrypting fields for perl Tie::EncryptedHash augments Perl hash semantics to build secure, encrypting containers of data. Tie::EncryptedHash introduces special hash fields that are coupled with encrypt/decrypt routines to encrypt assignments at STORE() and decrypt retrievals at FETCH(). By design, encrypting fields are associated with keys that begin in single underscore. The remaining keyspace is used for accessing normal hash fields, which are retained without modification. While the password is set, a Tie::EncryptedHash behaves exactly like a standard Perl hash. This is its transparent mode of access. Encrypting and normal fields are identical in this mode. When password is deleted, encrypting fields are accessible only as ciphertext. This is Tie::EncryptedHash's opaque mode of access, optimized for serialization. Encryption is done with Crypt::CBC(3) which encrypts in the cipher block chaining mode with Blowfish, DES or IDEA. Tie::EncryptedHash uses Blowfish by default, but can be instructed to employ any cipher supported by Crypt::CBC(3). -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#364576: ITP: libconvert-ascii-armour-perl -- Convert binary octets into ASCII armoured messages for perl
Package: wnpp Severity: wishlist Owner: "Pierre-Matthieu Alamy" <[EMAIL PROTECTED]> * Package name: libconvert-ascii-armour-perl Version : 1.4 Upstream Author : Vipul Ved Prakash <[EMAIL PROTECTED]> * URL : http://cpan.org/modules/by-module/Convert/ * License : Artistic Programming Lang: Perl Description : Convert binary octets into ASCII armoured messages for perl This module converts hashes of binary octets into ASCII messages suitable for transfer over 6-bit clean transport channels. The encoded ASCII resembles PGP's armoured messages, but are in no way compatible with PGP. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#364577: ITP: libclass-loader-perl -- Load modules and create objects on demand for perl
Package: wnpp Severity: wishlist Owner: "Pierre-Matthieu Alamy" <[EMAIL PROTECTED]> * Package name: libclass-loader-perl Version : 2.03 Upstream Author : Vipul Ved Prakash <[EMAIL PROTECTED]> * URL : http://cpan.org/modules/by-module/Class/ * License : Artistic Programming Lang: Perl Description : Load modules and create objects on demand for perl Certain applications like to defer the decision to use a particular module till runtime. This is possible in perl, and is a useful trick in situations where the type of data is not known at compile time and the application doesn't wish to pre-compile modules to handle all types of data it can work with. Loading modules at runtime can also provide flexible interfaces for perl modules. Modules can let the programmer decide what modules will be used by it instead of hard-coding their names. Class::Loader is an inheritable class that provides a method, _load(), to load a module from disk and construct an object by calling its constructor. It also provides a way to map modules names and associated metadata with symbolic names that can be used in place of module names at _load(). -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]