The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "dist:Crypt-OpenPGP"

Crypt::OpenPGP - Pure-Perl OpenPGP implementation River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP* is a pure-Perl implementation of the OpenPGP standard[1]. In addition to support for the standard itself, *Crypt::OpenPGP* claims compatibility with many other PGP implementations, both those that support the standard and those that ...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::CFB - PGP Cipher Feedback Mode River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::CFB* implements the variant of Cipher Feedback mode that PGP uses in its encryption and decryption. The key difference with PGP CFB is that the CFB state is resynchronized at each encryption/decryption. This applies both when encrypt...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::MDC - MDC (modification detection code) packet River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::MDC* is a PGP MDC (modification detection code) packet. Such a packet is used alongside Encrypted-MDC data packets so that modifications to the ciphertext can be detected. The MDC packet contains a "SHA-1" digest of the plaintext for...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Key - OpenPGP key factory River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Key* provides base class functionality for all *Crypt::OpenPGP* public and secret keys. It functions as a factory class for key generation and key instantiation. The only time you will ever use *Crypt::OpenPGP::Key* directly is to ge...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::S2k - String-to-key generation River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::S2k* implements string-to-key generation for use in generating symmetric cipher keys from standard, arbitrary-length passphrases (like those used to lock secret key files). Since a passphrase can be of any length, and key material mu...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Util - Miscellaneous utility functions River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Util* contains a set of exportable utility functions used through the *Crypt::OpenPGP* set of libraries. bitsize($n) Returns the number of bits in the *Math::BigInt* integer object *$n*. bin2bigint($string) Given a string *$string* o...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Words - Create English-word encodings River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Words* provides routines to convert either octet or hexadecimal strings into a list of English words, using the same algorithm and biometric word lists as used in PGP (see *AUTHOR & COPYRIGHTS* for source of word lists). In PGP this ...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Trust - PGP Trust packet River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Trust* is a PGP Trust packet. From the OpenPGP RFC: "Trust packets contain data that record the user's specifications of which key holders are trustworthy introducers, along with other information that implementing software uses for ...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Buffer - Binary in/out buffer River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Buffer* subclasses the *Data::Buffer* class to provide binary in/out buffer capabilities for *Crypt::OpenPGP*. In addition to the standard *Data::Buffer* methods, this class adds methods to get and put multiple-precision integers (*M...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Marker - PGP Marker packet River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Marker* is a PGP Marker packet. These packets are used by PGP 5.x to signal to earlier versions of PGP (eg. 2.6.x) that the message requires newer software to be read and understood. The contents of the Marker packet are always the s...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Digest - PGP message digest factory River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Digest* is a factory class for PGP message digest objects. All digest objects are subclasses of this class and share a common interface; when creating a new digest object, the object is blessed into the subclass to take on algorithm-...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Cipher - PGP symmetric cipher factory River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Cipher* is a factory class for PGP symmetric ciphers. All cipher objects are subclasses of this class and share a common interface; when creating a new cipher object, the object is blessed into the subclass to take on algorithm-speci...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Armour - ASCII Armouring and Unarmouring River stage one • 3 direct dependents • 3 total dependents

This module converts arbitrary-length strings of binary octets into Base64-encoded ASCII messages suitable for transfer as text. It also converts in the opposite direction, taking an armoured message and returning the binary data, along with headers....

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::UserID - PGP User ID packet River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::UserID* is a PGP User ID packet. Such a packet is used to represent the name and email address of the key holder, and typically contains an RFC822 mail name like Foo Bar <foo@bar.com>...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Message - Sequence of PGP packets River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Message* provides a container for a sequence of PGP packets. It transparently handles ASCII-armoured messages, as well as cleartext signatures....

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::KeyRing - Key ring object River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::KeyRing* provides keyring management and key lookup for *Crypt::OpenPGP*. A *KeyRing*, in this case, does not necessarily have to be a keyring file; a *KeyRing* object is just a collection of key blocks, where each key block contains...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::KeyBlock - Key block object River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::KeyBlock* represents a single keyblock in a keyring. A key block is essentially just a set of associated keys containing exactly one master key, zero or more subkeys, some user ID packets, some signatures, etc. The key is that there ...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Plaintext - A plaintext, literal-data packet River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Plaintext* implements plaintext literal-data packets, and is essentially just a container for a string of octets, along with some meta-data about the plaintext....

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::Signature - Signature packet River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::Signature* implements PGP signature packets and provides functionality for hashing PGP packets to obtain message digests; these digests are then signed by the secret key to form a signature. *Crypt::OpenPGP::Signature* reads and writ...

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC

Crypt::OpenPGP::KeyServer - Interface to HKP keyservers River stage one • 3 direct dependents • 3 total dependents

*Crypt::OpenPGP::KeyServer* is an interface to HKP keyservers; it provides lookup by UID and by key ID. At the moment only HKP keyservers are supported; future releases will likely support the NAI LDAP servers and the email keyservers....

SROMANOV/Crypt-OpenPGP-1.12 - 16 Aug 2015 11:35:42 UTC
39 results (0.023 seconds)