Main > Free Download Search >

Free readeru0027s digest software for linux

readeru0027s digest

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 118
WebCache::Digest 1.00

WebCache::Digest 1.00


WebCache::Digest is a Cache Digest implementation in Perl. more>>
WebCache::Digest is a Cache Digest implementation in Perl.

SYNOPSIS

use WebCache::Digest;

# fetching a digest via HTTP
$d = new WebCache::Digest;
$d->fetch("flibbertigibbet.swedish-chef.org", 3128);

# dump header fields out for info
print STDERR $d->dump_header();

# saving a digest
$d->save("flib");

# loading a digest
$e = new WebCache::Digest;
$e->load("flib");

# creating a new digests
$f = new WebCache::Digest;
$f->create; # defaults to a digest with 500 URL capacity

# registering a URL and method in the digest
$f->register("get", "http://www.kha0s.org/">;
if ($f->lookup("get", "http://www.kha0s.org/">) {
print "hit!n";
}

# access to raw header and digest contents
print "header: " . unpack("H*", $f->header) . "n";
print "digest: " . unpack("H*", $f->digest) . "n";

# access to digest header block elements
print "Current version: " . $f->current_version . "n";
print "Required version: " . $f->required_version . "n";
print "Capacity: " . $f->capacity . "n";
print "Count: " . $f->count . "n";
print "Deletion count: " . $f->del_count . "n";
print "Size in bytes: " . $f->size_in_bytes . "n";
print "Bits per entry: " . $f->bits_per_entry . "n";

<<less
Download (0.014MB)
Added: 2007-03-27 License: Perl Artistic License Price:
941 downloads
CD-ROM Digest MD5 0.1

CD-ROM Digest MD5 0.1


CD-ROM Digest MD5 is a quick and dirty program to compute checksum of individual track. more>>
CD-ROM Digest MD5 is a quick and dirty program to compute checksum of individual track.
It reports for each track:
- size (read)
- MD5 digest
Supports:
- multi track CD-ROM
- mode 1
- Linux ioctl()
- libmhash
Doesnt support:
- DVD
- Audio CD
- Multi session
- Other operating system
Known problem:
- Track are often bigger than the data written inside
- The program will report an error at the end of the data
- I dont know the way to detect the end of data.
- The checksum is good, and the size too.
Be aware:
- Track shorter than 4s -> 300 frames -> 614400 bytes are padded
- To check the checksum, pad the img/iso file to 614400 and run md5sum
<<less
Download (0.010MB)
Added: 2007-01-16 License: GPL (GNU General Public License) Price:
1011 downloads
digest 0.9

digest 0.9


digest provides a tool to generate HTML index pages and image previews. more>>
digest provides a tool to generate HTML index pages and image previews.

Digest generates HTML index pages and image previews for collections of images. It is fast and simple, and it creates HTML that is compact, quick-rendering, and does not rely on JavaScript or CSS.

<<less
Download (0.005MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
984 downloads
File::RsyncP::Digest 0.68

File::RsyncP::Digest 0.68


File::RsyncP::Digest is a Perl interface to rsync message digest algorithms. more>>
File::RsyncP::Digest is a Perl interface to rsync message digest algorithms.

SYNOPSIS

use File::RsyncP::Digest;

$rsDigest = new File::RsyncP::Digest;

# specify rsync protocol version (default is buggy digests).
$rsDigest->protocol(version);

# file MD4 digests
$rsDigest->reset();
$rsDigest->add(LIST);
$rsDigest->addfile(HANDLE);

$digest = $rsDigest->digest();
$string = $rsDigest->hexdigest();

# Return 32 byte pair of digests (protocol = 27).
$digestPair = $rsDigest->digest2();

$digest = File::RsyncP::Digest->hash(SCALAR);
$string = File::RsyncP::Digest->hexhash(SCALAR);

# block digests
$digests = $rsDigest->blockDigest($data, $blockSize, $md4DigestLen,
$checksumSeed);

$digests = $rsDigest->blockDigestUpdate($state, $blockSize,
$blockLastLen, $md4DigestLen, $checksumSeed);

$digests2 = $rsDigest->blockDigestExtract($digests16, $md4DigestLen);

The File::RsyncP::Digest module allows you to compute rsync digests, including the RSA Data Security Inc. MD4 Message Digest algorithm, and Adler32 checksums from within Perl programs.

<<less
Download (0.15MB)
Added: 2007-02-14 License: Perl Artistic License Price:
983 downloads
Cornfed SIP User Agent 1.1.4

Cornfed SIP User Agent 1.1.4


Cornfed SIP User Agent is a SIP Softphone. more>>
Cornfed SIP User Agent is a Session Initiation Protocol (SIP) based softphone for your IBM-compatible Personal Computer running the Linux operating system.
The Cornfed SIP User Agent allows you to make Internet phone calls using an Advanced Linux Sound Architecture (ALSA) or Open Sound System (OSS) sound card with speakers and microphone as your telephone handset.
Main features:
- Supports SIP (RFC 3261), SDP (RFC 2327), and RTP (RFCs 3550 and 3551)
- Automated detection of Residential Gateways using Network Address Translation (NAT)
- Supports Digest authentications for registrations and outbound INVITEs
- Support for loose proxy routing using Record-Route and Route headers
- Handles forking of outbound INVITEs by proxies
- Supports re-INVITEs for changes to media transport
- Supports G.711 mu-Law and a-Law voice codecs
- Supports RFC 2833 DTMF tone generation
- Supports SIP compact header forms
- Gnome GUI and CLI clients
- Multi-threaded implementation
The Cornfed SIP User Agent is provided free of charge for personal use for users of the Linux operating system. The program is provided as a binary distribution only. The Cornfed SIP User Agent is specifically designed with embedded and mobile wireless devices in mind.
Development is under way to bring this client to other platforms. If you are interested in licensing this technology for your commercial application, please contact Cornfed Systems at 410-404-8790.
Enhancements:
- Minor bug fixes.
- Changed readline functionality to used raw input rather than cooked mode.
- Fixed bugs with display of status messages that caused client to hang.
- Disabled removal of registration on client exit.
<<less
Download (0.78MB)
Added: 2007-07-03 License: Free for non-commercial use Price:
529 downloads
Template::Plugin::Digest::MD5 0.03

Template::Plugin::Digest::MD5 0.03


Template::Plugin::Digest::MD5 is a TT2 interface to the MD5 Algorithm. more>>
Template::Plugin::Digest::MD5 is a TT2 interface to the MD5 Algorithm.

SYNOPSIS

[% USE Digest.MD5 -%]
[% checksum = content FILTER md5 -%]
[% checksum = content FILTER md5_hex -%]
[% checksum = content FILTER md5_base64 -%]
[% checksum = content.md5 -%]
[% checksum = content.md5_hex -%]
[% checksum = content.md5_base64 -%]

The Digest.MD5 Template Toolkit plugin provides access to the MD5 algorithm via the Digest::MD5 module. It is used like a plugin but installs filters and vmethods into the current context.

When you invoke

[% USE Digest.MD5 %]

the following filters (and vmethods of the same name) are installed into the current context:

md5

Calculate the MD5 digest of the input, and return it in binary form. The returned string will be 16 bytes long.

md5_hex

Same as md5, but will return the digest in hexadecimal form. The length of the returned string will be 32 and it will only contain characters from this set: 0..9 and a..f.

md5_base64

Same as md5, but will return the digest as a base64 encoded string. The length of the returned string will be 22 and it will only contain characters from this set: A..Z, a..z, 0..9, + and /.

Note that the base64 encoded string returned is not padded to be a multiple of 4 bytes long. If you want interoperability with other base64 encoded md5 digests you might want to append the redundant string "==" to the result.
As the filters are also available as vmethods the following are all equivalent:

FILTER md5_hex; content; END;
content FILTER md5_hex;
content.md5_base64;

<<less
Download (0.004MB)
Added: 2007-04-06 License: Perl Artistic License Price:
931 downloads
Template::Plugin::Digest::SHA1 0.03

Template::Plugin::Digest::SHA1 0.03


Template::Plugin::Digest::SHA1 is a TT2 interface to the SHA1 Algorithm. more>>
Template::Plugin::Digest::SHA1 is a TT2 interface to the SHA1 Algorithm.

SYNOPSIS

[% USE Digest.SHA1 -%]
[% checksum = content FILTER sha1 -%]
[% checksum = content FILTER sha1_hex -%]
[% checksum = content FILTER sha1_base64 -%]
[% checksum = content.sha1 -%]
[% checksum = content.sha1_hex -%]
[% checksum = content.sha1_base64 -%]

The Digest.SHA1 Template Toolkit plugin provides access to the NIST SHA-1 algorithm via the Digest::SHA1 module. It is used like a plugin but installs filters and vmethods into the current context.

<<less
Download (0.004MB)
Added: 2007-04-04 License: Perl Artistic License Price:
933 downloads
Deadlock User Management System 1.0

Deadlock User Management System 1.0


Deadlock is a powerful, customizable, fully featured user management system which protects Web directories and documents. more>>
Deadlock is a powerful, customizable, fully featured user management system which protects Web directories and documents using Apaches htaccess and htpasswd.
It features email verification and administrator approval capabilities that require the administrator to approve accounts before they become active. Deadlock supports both Basic and Digest authentication.
Main features:
- Administration Panel
- All settings and administrative controls are in the admin panel.
- User Panel
- Gives users the ability to change their password, email address, and any other account information
- Admin Approval
- When this option is enabled, the administrator must approve accounts before they are able to login to the protected area.
- User Email Verification
- Users are sent a confirmation email to the address specified and must click the link in the email to verify that the email provided is their email.
- Multiple Authentication Types
- The administrator has the option to choose between Basic and Digest authentication.
- Auto htpasswd generation
- Automatically generates the .htpasswd file containing the users when a new user is added.
- Auto htaccess generation
- Automatically generates the .htaccess file when the name of the protected area is changed.
- Templatable user panel pages
- The user panel pages are generated with a template engine, allowing you to customize the pages that the user sees by simply editing the html templates.
- Templatable System Emails
- Customize system emails by editing the templates. Deadlock does not yet include an editor in the admin panel.
- Web based configuration
- Configuration options can easily be modified through the administration panel.
- Integrated Email Functionality
- Specific users can be emailed straight through the admin panel, by simply selecting a link.
- Bulk Email all registered users
- Includes bulk email functionality allowing you to email everyone in the database.
- Search through user list
- The user list is searchable, allowing you to find a users account by just entering their last name, first name or username.
- Rollover Information
Enhancements:
- [bug fix] Fixed some problems that occur when gpc magic quotes is enabled
- [bug fix] Added some string escapes to mysql queries to prevent SQL injections
- [bug fix] If user edits their own account, notification email is not sent
- [security] Fixed bug that cuased problems when a user went to edit their account
<<less
Download (MB)
Added: 2007-01-01 License: GPL (GNU General Public License) Price:
1028 downloads
Mail::Digest::Tools 2.11

Mail::Digest::Tools 2.11


Mail::Digest::Tools is a Perl module that has tools for digest versions of mailing lists. more>>
Mail::Digest::Tools is a Perl module that has tools for digest versions of mailing lists.

SYNOPSIS

use Mail::Digest::Tools qw(
process_new_digests
reprocess_ALL_digests
reply_to_digest_message
repair_message_order
consolidate_threads_multiple
consolidate_threads_single
delete_deletables
);
%config_in and %config_out are two configuration hashes whose setup is discussed in detail below.
process_new_digests(%config_in, %config_out);

reprocess_ALL_digests(%config_in, %config_out);

$full_reply_file = reply_to_digest_message(
%config_in,
%config_out,
$digest_number,
$digest_entry,
$directory_for_reply,
);

repair_message_order(
%config_in,
%config_out,
{
year => 2004,
month => 01,
day => 27,
}
);

consolidate_threads_multiple(
%config_in,
%config_out,
$first_common_letters, # optional integer argument; defaults to 20
);

consolidate_threads_single(
%config_in,
%config_out,
[
first_dummy_file_for_consolidation.thr.txt,
second_dummy_file_for_consolidation.thr.txt,
],
);

delete_deletables(%config_out);

Mail::Digest::Tools provides useful tools for processing mail which an individual receives in a daily digest version from a mailing list. Digest versions of mailing lists are provided by a variety of mail processing programs and by a variety of list hosts. Within the Perl community, digest versions of mailing lists are offered by such sponsors as Active State, Sourceforge, Yahoo! Groups and London.pm. However, you do not have to be interested in Perl to make use of Mail::Digest::Tools. Mail from any of the thousands of Yahoo! Groups, for example, may be processed with this module.

If, when you receive e-mail from the digest version of a mailing list, you simply read the digest in an e-mail client and then discard it, you may stop reading here. If, however, you wish to read or store such mail by subject, read on. As printed in a normal web browser, this document contains 40 pages of documentation. You are urged to print this documentation out and study it before using this module.

To understand how to use Mail::Digest::Tools, we will first take a look at a typical mailing list digest. We will then sketch how that digest looks once processed by Mail::Digest::Tool. We will then discuss Mail::Digest::Tools exportable functions. Next, we will study how to prepare the two configuration hashes which hold the configuration data. Finally, we will provide some tips for everyday use of Mail::Digest::Tools.

<<less
Download (0.067MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1213 downloads
Digest::SHA1 1.2.11

Digest::SHA1 1.2.11


Digest::SHA1 is a Perl interface to the SHA-1 algorithm. more>>
Digest::SHA1 is a Perl interface to the SHA-1 algorithm.

SYNOPSIS

# Functional style
use Digest::SHA1 qw(sha1 sha1_hex sha1_base64);

$digest = sha1($data);
$digest = sha1_hex($data);
$digest = sha1_base64($data);
$digest = sha1_transform($data);


# OO style
use Digest::SHA1;

$sha1 = Digest::SHA1->new;

$sha1->add($data);
$sha1->addfile(*FILE);

$sha1_copy = $sha1->clone;

$digest = $sha1->digest;
$digest = $sha1->hexdigest;
$digest = $sha1->b64digest;
$digest = $sha1->transform;

The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input.

The Digest::SHA1 module provide a procedural interface for simple use, as well as an object oriented interface that can handle messages of arbitrary length and which can read files directly.

<<less
Download (0.038MB)
Added: 2007-07-26 License: Perl Artistic License Price:
821 downloads
Squid Users Manager 1.2.0

Squid Users Manager 1.2.0


Squid Users Manager is a web-enabled and intuitive user interface that manager Squid Proxy NCSA auth users. more>>
Squid Users Manager is a web-enabled and intuitive user interface written upon Ruby on Rails web development framework that manager Squid Proxy NCSA auth users across MD5 digest files.
The project is Open Source and distributed under the terms of the GPL licence.
Enhancements:
- Application Web 2.0 compliant
- New design with css and light layout.
- Ajax enabled app.
- More intuitive and elegant application.
<<less
Download (1.4MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1125 downloads
Digest::Perl::MD4 1.4

Digest::Perl::MD4 1.4


Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm. more>>
Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm.

This is not C-code interface (like Digest::MD5) but a Perl-only implementation of MD4 (like Digest::Perl::MD5). Because of this, it is slow but avoids platform specific complications. For efficiency you should use Digest::MD4 instead of this module if it is available.

SYNOPSIS

# Functional style
use Digest::Perl::MD4 qw(md4 md4_hex md4_base64);

$hash = md4 $data;
$hash = md4_hex $data;
$hash = md4_base64 $data;


# OO style
use Digest::Perl::MD4;

$ctx = Digest::Perl::MD4->new;

$ctx->add($data);
$ctx->addfile(*FILE);

$digest = $ctx->digest;
$digest = $ctx->hexdigest;
$digest = $ctx->b64digest;

<<less
Download (0.007MB)
Added: 2007-02-22 License: Perl Artistic License Price:
976 downloads
Digest::MD5::Perl 1.8

Digest::MD5::Perl 1.8


Digest::MD5::Perl is a Perl implementation of Ron Rivests MD5 Algorithm. more>>
Digest::MD5::Perl is a Perl implementation of Ron Rivests MD5 Algorithm.

This is not an interface (like Digest::MD5) but a Perl implementation of MD5. It is written in perl only and because of this it is slow but it works without C-Code. You should use Digest::MD5 instead of this module if it is available. This module is only usefull for
computers where you cannot install Digest::MD5 (e.g. lack of a C-Compiler) encrypting only small amounts of data (less than one million bytes). I use it to hash passwords.
educational purposes

SYNOPSIS

# Functional style
use Digest::MD5 qw(md5 md5_hex md5_base64);

$hash = md5 $data;
$hash = md5_hex $data;
$hash = md5_base64 $data;


# OO style
use Digest::MD5;

$ctx = Digest::MD5->new;

$ctx->add($data);
$ctx->addfile(*FILE);

$digest = $ctx->digest;
$digest = $ctx->hexdigest;
$digest = $ctx->b64digest;

<<less
Download (0.072MB)
Added: 2007-02-22 License: Perl Artistic License Price:
978 downloads
VitalSigns 1.1

VitalSigns 1.1


VitalSigns provides an easy to use application for logging report data over time. more>>
VitalSigns provides an easy to use application for logging report data over time, and reporting that data in an easy-to-digest format.
VitalSigns is written in a very extensible manner so that you may extend it to retrieve report data from anywhere, and report it in any way you desire.
Enhancements:
- MessageFormat causes errors by not being formatted for numbers, and using them for generating SQL.
- DashboardReport storing data when unneccessary.
- Use of simple trigger rather than cron trigger causes reports to not run on exactly the minute they are expected to.
- SqlDataDaoTest failing - fixed failing test after merge error created regression failure.
- ReportRatioLogger looks at wrong side of data array
- Fixed templated reporting. Data retrievers were not being cloned when reports were, so all cloned reports were using the same retriever, which obviously caused problems.
- Return null rather than zero from NO_OP_DATA_RETRIEVER. This prevents reports with no configured data retriever from logging erroneous "zero" data points every time they are invoked.
- Fixed the compile error in ReportRatioLogger when compiling with JDK less than 1.5. Fixes 1528573.
<<less
Download (0.10MB)
Added: 2007-01-21 License: CDDL (Common Development and Distribution License) Price:
1007 downloads
WebCleaner 2.41

WebCleaner 2.41


WebCleaner is a filtering HTTP proxy. more>>
WebCleaner is a filtering HTTP proxy. It can be customized to your needs.
Main features:
- remove unwanted HTML (adverts, flash, etc.)
- popup blocker
- disable animated GIFs
- filter images by size, remove banner adverts
- compress documents on-the-fly (with gzip)
- reduce images to low-bandwidth JPEGs
- remove/add/modify arbitrary HTTP headers
- configurable over web interface
- usage of SquidGuard blacklists
- antivirus filter module
- detection and correction of known HTML security flaws
- Basic, Digest and (untested) NTLM proxy authentication support
- per-host access control
- HTTP/1.1 support (persistent connections, pipelining)
- HTTPS proxy CONNECT and optional SSL gateway support
Enhancements:
- Compatibility problems with Internet Explorer and the Compress
- filter have been fixed.
- The Blocker filter now allows absolute block URLs.
- The sets of blacklisted domains and advertisement servers have been updated.
<<less
Download (1.6MB)
Added: 2006-12-16 License: GPL (GNU General Public License) Price:
1164 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5