Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.479.639 Times

Md5 Algorithm Implementation freeware
Filter: All | Freeware | Demo
 

Md5 Algorithm Implementation

< 1 2 3 4 5 > 
Added: March 25, 2013 | Visits: 600

LJ comments import: reloaded NEW: Supports built-in WordPress comments threading! [see notes 2 and 3]Automatically synchronizes comments from Your LiveJournal blog with Your stand-alone WordPress-based blog.All imported comments are associated with Your blog entries, crossposted to LiveJournal, and shown along with comments,... Platforms: PHP

License: Freeware Size: 102.4 KB Download (50): LJ comments import: reloaded Download

Added: September 22, 2013 | Visits: 391

crcmod crcmod is a Python module for creating functions computing the Cyclic Redundancy Check (CRC). Any generating polynomial producing 8, 16, 24, 32, or 64 bit CRCs is allowed. Generated functions can be used in Python or C/C++ source code can be generated. Note: Includes version for Python 3.x... Platforms: *nix

License: Freeware Size: 92.16 KB Download (38): crcmod Download

Added: February 03, 2010 | Visits: 851

Algorithm::SkipList Algorithm::SkipList is a Perl implementation of skip lists. SYNOPSIS my $list = new Algorithm::SkipList(); $list->insert( key1, value ); $list->insert( key2, another value ); $value = $list->find(key2); $list->delete(key1); This is an implementation of skip lists in Perl. Skip... Platforms: *nix

License: Freeware Size: 30.72 KB Download (117): Algorithm::SkipList Download

Added: March 23, 2013 | Visits: 434

Particle Swarm Optimization (PSO) algorithm A flexible implementation of PSO algorithm with time-varying parameters. Algorithm is suitable for solving continuous optimization problems. Special care has been taken to enable flexibility of the algorthm with respect to its parameters and to initial population selection. Detailed logging of... Platforms: Matlab

License: Freeware Size: 10 KB Download (40): Particle Swarm Optimization (PSO) algorithm Download

Added: April 18, 2010 | Visits: 957

Digest::Perl::MD4 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... Platforms: *nix

License: Freeware Size: 7.17 KB Download (101): Digest::Perl::MD4 Download

Added: May 02, 2010 | Visits: 1.067

Algorithm::AhoCorasick::SearchMachine Algorithm::AhoCorasick::SearchMachine provides an implementation and low-level interface of Algorithm::AhoCorasick. Feeds input to the state machine. First (after the instance) argument of this method is the input text (which can be empty, in which case the method doesnt do anything), second... Platforms: *nix

License: Freeware Size: 5.12 KB Download (114): Algorithm::AhoCorasick::SearchMachine Download

Added: August 23, 2013 | Visits: 466

Hungarian Algorithm for Linear Assignment Problems (V2.2) This is an extremely fast implementation of the famous Hungarian algorithm (aslo known as Munkres' algorithm). The new version (V2.2)is about 1.5 times faster than the old version (V2.1). It can solve a 1000 x 1000 problem in about 20 seconds in a Core Duo (T2500 @ 2.00GHz) XP laptop with Matlab... Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Hungarian Algorithm for Linear Assignment Problems (V2.2) Download

Solving Symmetrical and DisSymmetrical TSP base on Ant Colony Algorithm In this M-file, the implementation of ACO Algorithm is given with the support of reference papers listed. You can easily use it as following command to see the pictures of result and the playing iterative course.ACO('filename.tsp');filename.tsp is the problem file of the Symmetrical or... Platforms: Matlab


Added: June 28, 2013 | Visits: 536

SpeedyGA: A Fast Simple Genetic Algorithm SpeedyGA is a vectorized implementation of a genetic algorithm in the Matlab programming language. Without bells and whistles, it faithfully implements the specification for a Simple GA given on pgs 10, 11 of M. Mitchell's GA book. See comments in code for details.This script has played a crucial... Platforms: Matlab

License: Freeware Size: 10 KB Download (51): SpeedyGA: A Fast Simple Genetic Algorithm Download

Added: August 20, 2013 | Visits: 403

General Viterbi Algorithm General implementation of matlab version of Viterbi algorithm specifically written for gene structure finding problem in mind. However, it can be modified to suit the goal of a user.Input:Transition Probability MatrixEmission Probability MatrixInitial Probability MatrixStates Matrix (ie.... Platforms: Matlab

License: Freeware Size: 10 KB Download (43): General Viterbi Algorithm Download

Added: August 21, 2008 | Visits: 839

GJ's MD5 Checker MD5 (Message-Digest algorithm 5) can be used as a way of checking that a computer file has not been maliciously or accidentally altered. A bit like our fingerprints are unique to us and can be used to identify us, computer files can also be examined to produce a unique identification in the form... Platforms: Windows

License: Freeware Size: 135 KB Download (454): GJ's MD5 Checker Download

Added: January 18, 2010 | Visits: 1.066

Algorithm::Dependency Algorithm::Dependency is a base class for implementing various dependency trees. SYNOPSIS use Algorithm::Dependency; use Algorithm::Dependency::Source::File; # Load the data from a simple text file my $data_source = Algorithm::Dependency::Source::File->new( foo.txt ); # Create the... Platforms: *nix

License: Freeware Size: 46.08 KB Download (121): Algorithm::Dependency Download

Added: February 19, 2010 | Visits: 886

Algorithm::SISort Algorithm::SISort is a Perl module that contains select and insert sorting algorithm. SYNOPSIS use Algorithm::SISort qw(Sort Sort_inplace); @sorted_list = Sort {$_[0] <=> $_[1]} @unsorted_list; # ... or ... $number_of_comparisons = Sort_inplace {$_[0] <=> $_[1]} @unsorted_list; This... Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): Algorithm::SISort Download

Added: July 09, 2010 | Visits: 973

Algorithm::SocialNetwork Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #... Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): Algorithm::SocialNetwork Download

Added: October 05, 2010 | Visits: 809

Algorithm::SixDegrees Algorithm::SixDegrees is a Perl module that can find a path through linked elements in a set. SYNOPSIS use Algorithm::SixDegrees; my $sd1 = Algorithm::SixDegrees->new(); $sd1->data_source( actors => &starred_in ); $sd1->data_source( movies => &stars_of ); @elems = $sd1->make_link(actors,... Platforms: *nix

License: Freeware Size: 11.26 KB Download (94): Algorithm::SixDegrees Download

Added: April 08, 2010 | Visits: 2.655

Digest::MD5::Reverse Digest::MD5::Reverse provides MD5 Reverse Lookup. MD5 sums (see RFC 1321 - The MD5 Message-Digest Algorithm) are used as a one-way hash of data. Due to the nature of the formula used, it is impossible to reverse it. This module provides functions to search several online MD5 hashes database... Platforms: *nix

License: Freeware Size: 2.05 KB Download (925): Digest::MD5::Reverse Download

Released: August 03, 2017  |  Added: August 23, 2017 | Visits: 1.858

Free MD5 SHA1 Verifier Free MD5 SHA1 Verifier is a freeware tool designed to calculate and verify checksums (hash) of downloaded files. Supports MD5, SHA-1, HAVAL, MD2, SHA-256, SHA-384, SHA-512. Key Features: The program has a convenient user interface. Instantly calculate checksum (hash) for any file. Verify file... Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Freeware Size: 1.8 MB Download (170): Free MD5 SHA1 Verifier Download

Released: August 25, 2012  |  Added: August 25, 2012 | Visits: 771

Jarsync - a Java rsync implementation. Jarsync is a Java implementation of the rsync algorithm, a deltacompression algorithm for fast network file transfers. Platforms: Windows, Mac, Linux

License: Freeware Size: 137.46 KB Download (49): Jarsync - a Java rsync implementation. Download

Added: May 10, 2013 | Visits: 390

Porter Stemming Algorithm This is a fairly faithful implementation of the Porter stemming algorithm that reduces English words to their stems.There is a deviation in the way compound words are stemmed, such as hyphenated words and words starting with certain prefixes. For instance, "international" should be reduced to... Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (57): Porter Stemming Algorithm Download

Added: May 10, 2013 | Visits: 555

Length-limited O(1) LRU Cache implementation Length-limited O(1) LRU Cache implementation script is an implementation of a length-limited O(1ion scripue. Platforms: Windows, Mac, *nix, Python, BSD Solaris


< 1 2 3 4 5 >