implementations
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1783
Fast MD5 Implementation in Java 2.6.1
Fast MD5 Implementation in Java is a heavily optimized implementation of the MD5 hashing algorithm written in Java. more>>
Fast MD5 Implementation in Java is a heavily optimized implementation of the MD5 hashing algorithm written in Java.
Fast MD5 Implementation in Java includes an optional native method for even greater speed improvements.
How Fast Is It?
Short answer:Much faster than any other Java implementation that I have tested and (surprisingly) even faster than the native, non-Java MD5 implementation on some systems.
Long answer:First of all, it is important to note that the term "fast" is used here in relative terms. The implementation of the MD5 message digest algorithm available on this page is written in Java and is fast compared with other implementations written in Java, both because it is heavily optimized by itself and because there is an optional native method that makes it even faster when the platform supports it. How it compares to a sensible implementation written in a language, such as C, that is compiled directly to machine code, is heavily dependent upon how good of a job the JIT compiler in your JVM does in compiling the code or whether you are able to use the optional native method.
Enhancements:
- Martin West contributed a bug fix and some code refactoring to make all targets work out of the box in the Ant build file. Previously, the "dist" target did not work if the "docs" directory was not present.
<<lessFast MD5 Implementation in Java includes an optional native method for even greater speed improvements.
How Fast Is It?
Short answer:Much faster than any other Java implementation that I have tested and (surprisingly) even faster than the native, non-Java MD5 implementation on some systems.
Long answer:First of all, it is important to note that the term "fast" is used here in relative terms. The implementation of the MD5 message digest algorithm available on this page is written in Java and is fast compared with other implementations written in Java, both because it is heavily optimized by itself and because there is an optional native method that makes it even faster when the platform supports it. How it compares to a sensible implementation written in a language, such as C, that is compiled directly to machine code, is heavily dependent upon how good of a job the JIT compiler in your JVM does in compiling the code or whether you are able to use the optional native method.
Enhancements:
- Martin West contributed a bug fix and some code refactoring to make all targets work out of the box in the Ant build file. Previously, the "dist" target did not work if the "docs" directory was not present.
Download (0.073MB)
Added: 2006-03-06 License: LGPL (GNU Lesser General Public License) Price:
1350 downloads
Procinfo NG 2.0.113 (C++ Implementation)
Procinfo NG is a ground-up rewrite of the procinfo program. more>>
Procinfo NG is a ground-up rewrite of the procinfo program. Procinfo NGs goal is to make the code more readable (and reusable) and to restore broken functionality of the original program.
The original program was written for Linux 1.0, and updated through 2.2. This version is for 2.6.
Enhancements:
- Updates were made to match what some Linux distributions have done to procinfo-18.
- Support for MSI and XEN interrupts were added.
- Some non-x86 architectures are handled.
- Assorted bugs and 80-character console nonsense were fixed.
<<lessThe original program was written for Linux 1.0, and updated through 2.2. This version is for 2.6.
Enhancements:
- Updates were made to match what some Linux distributions have done to procinfo-18.
- Support for MSI and XEN interrupts were added.
- Some non-x86 architectures are handled.
- Assorted bugs and 80-character console nonsense were fixed.
Download (0.041MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
805 downloads
Other version of Procinfo NG
License:GPL (GNU General Public License)
Objective Modula-2 1.00 (Reference Implementation)
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2. more>>
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2 based on the object model and runtime of Objective-C.
The design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.
Objective Modula-2s scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
Enhancements:
- This code is used to verify ideas and concepts which come up in the course of defining the language.
- It is in an early stage, incomplete and subject to frequent changes.
<<lessThe design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.
Objective Modula-2s scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
Enhancements:
- This code is used to verify ideas and concepts which come up in the course of defining the language.
- It is in an early stage, incomplete and subject to frequent changes.
Download (0.019MB)
Added: 2007-07-21 License: (FDL) GNU Free Documentation License Price:
825 downloads
Suffix tree implementation library 1.2
Suffix tree implementation library is a C library, an implementation of the suffix trees algorithm to store/retrieve key/data pa more>>
Suffix tree implementation library is a C library, an implementation of the suffix trees algorithm to store/retrieve key/data pairs.
The main advantages are a linear indexing time, little memory usage, and very fast retrieving.
It has been developped on FreeBSD/gcc but should be fairly portable.
The source code "testsfx.c" show an example of how to use the library both for inserting, retrieving, and deleting data. There arent many functions and comments should be enough to give you an idea of how to use the library. (read the header of the source file)
You should edit sfxdisk.h to suit your needs: you can change the alphabet size and the offset type. It should be OK to use "long long" 64 bits ints instead of long, in fact I tested it succesfully but havent gone to the point of filling more than 2 GB of data (needless to say you need a 64 bits filesystem).
Two "tools" come with the library (new with version 1.2): dumpsfx and loadsfx. dumpsfx is used to dump the database: dumpsfx [-s separator] if you want to output the result as readable text or dumpsfx < file.sfx > -h to output it for reloading with loadsfx.
dumpsfx outputs on stdout and loadsfx reads from stdin. loadsfx < suffix tree file to create > < dumped_file
Enhancements:
- removed an useless offset incrementation in STwritenode
<<lessThe main advantages are a linear indexing time, little memory usage, and very fast retrieving.
It has been developped on FreeBSD/gcc but should be fairly portable.
The source code "testsfx.c" show an example of how to use the library both for inserting, retrieving, and deleting data. There arent many functions and comments should be enough to give you an idea of how to use the library. (read the header of the source file)
You should edit sfxdisk.h to suit your needs: you can change the alphabet size and the offset type. It should be OK to use "long long" 64 bits ints instead of long, in fact I tested it succesfully but havent gone to the point of filling more than 2 GB of data (needless to say you need a 64 bits filesystem).
Two "tools" come with the library (new with version 1.2): dumpsfx and loadsfx. dumpsfx is used to dump the database: dumpsfx [-s separator] if you want to output the result as readable text or dumpsfx < file.sfx > -h to output it for reloading with loadsfx.
dumpsfx outputs on stdout and loadsfx reads from stdin. loadsfx < suffix tree file to create > < dumped_file
Enhancements:
- removed an useless offset incrementation in STwritenode
Download (0.015MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1189 downloads
Bellagio OpenMAX IL Implementation 0.3.1
Bellagio is a sample implementation of OpenMAX IL for Linux. more>>
Bellagio is a sample implementation of OpenMAX IL for Linux.
It enables software developers and ISVs to familiarize themselves with the OpenMAX IL API and to develop their own OpenMAX multimedia and streaming media components for mobile devices, including codecs, video I/O, and audio mixers.
Included sample components comply with the OpenMAX base and interoperability profiles and can be tunnelled together.
Main features:
- a shared library with the IL core and a "reference" OpenMAX component
- a number of OpenMAX components which pass Khronos conformance tests
- a set of GStreamer plugins that use the IL API (not available yet)
Enhancements:
New video components:
- ffmpeg based MPEG4/H.264 decoder
- color converter component YUV -> RGB
- video renderer based on devFB
New audio component:
- audio file reader based on ffmpeg audio format
- volume component
Fixed known bugs:
- FFMPEG audio decoder now works on FC6 and other distributions with the latest ffmpeg release (0.4.9-0.35.20070204)
Known pending bugs:
- some ogg streams can not be decoded properly
- the tunneling between file reader, mp3 dec based on ffmpeg - alsa sink ends in a deadlock sometimes.
- This behavior has been detected some times using FC6 and UBUNTU, not with the FC4
Full list of components:
Audio:
- ogg decoder based on libvorbis (stand alone components, and multiple roles component)
- mp3 decoder based on mad decoder
- mp3 decoder based on ffmpeg (multiple roles component)
- volume component
- alsa audio sink
- ffmpeg audio file reader (to be used with mp3 ffmpeg decoder)
Video:
- MPEG4 decoder based on ffmpeg (multiple roles component)
- H.264 decoder based on ffmpeg (multiple roles component)
- Color converter based on ffmpeg
- video renderer based on devFB
- Major additions to the 0.2
- New port classes
The components are:
- multiple formats audio decoder component that supports mp3 and ogg audio formats
- alsa sink component
- all the other components are NOT compatible with the new architecture.
- They have been removed and will be ported to the new architecture in a further delivery
<<lessIt enables software developers and ISVs to familiarize themselves with the OpenMAX IL API and to develop their own OpenMAX multimedia and streaming media components for mobile devices, including codecs, video I/O, and audio mixers.
Included sample components comply with the OpenMAX base and interoperability profiles and can be tunnelled together.
Main features:
- a shared library with the IL core and a "reference" OpenMAX component
- a number of OpenMAX components which pass Khronos conformance tests
- a set of GStreamer plugins that use the IL API (not available yet)
Enhancements:
New video components:
- ffmpeg based MPEG4/H.264 decoder
- color converter component YUV -> RGB
- video renderer based on devFB
New audio component:
- audio file reader based on ffmpeg audio format
- volume component
Fixed known bugs:
- FFMPEG audio decoder now works on FC6 and other distributions with the latest ffmpeg release (0.4.9-0.35.20070204)
Known pending bugs:
- some ogg streams can not be decoded properly
- the tunneling between file reader, mp3 dec based on ffmpeg - alsa sink ends in a deadlock sometimes.
- This behavior has been detected some times using FC6 and UBUNTU, not with the FC4
Full list of components:
Audio:
- ogg decoder based on libvorbis (stand alone components, and multiple roles component)
- mp3 decoder based on mad decoder
- mp3 decoder based on ffmpeg (multiple roles component)
- volume component
- alsa audio sink
- ffmpeg audio file reader (to be used with mp3 ffmpeg decoder)
Video:
- MPEG4 decoder based on ffmpeg (multiple roles component)
- H.264 decoder based on ffmpeg (multiple roles component)
- Color converter based on ffmpeg
- video renderer based on devFB
- Major additions to the 0.2
- New port classes
The components are:
- multiple formats audio decoder component that supports mp3 and ogg audio formats
- alsa sink component
- all the other components are NOT compatible with the new architecture.
- They have been removed and will be ported to the new architecture in a further delivery
Download (0.49MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
895 downloads
ddds4j 1.0-SNAPSHOT
ddds4j is a java implementation of the Dynamic Delegation Discovery Service. more>>
ddds4j is a java implementation of the Dynamic Delegation Discovery Service.
ddds4j project contains an implementation of DDDS (RFC3401 through RFC3405) together with basic implementations of ENUM (RFC3761) and the SAML Metadata DDDS.
<<lessddds4j project contains an implementation of DDDS (RFC3401 through RFC3405) together with basic implementations of ENUM (RFC3761) and the SAML Metadata DDDS.
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
935 downloads
Apache::No404Proxy::Google 0.05
Apache::No404Proxy::Google is an implementation of Apache::No404Proxy. more>>
Apache::No404Proxy::Google is an implementation of Apache::No404Proxy.
SYNOPSIS
# in httpd.conf
PerlTransHandler Apache::No404Proxy::Google
PerlSetVar GoogleLicenseKey **************
Apache::No404Proxy::Google is one of the implementations of Apache::No404Proxy. This module uses SOAP::Lite to fetch Google cache.
<<lessSYNOPSIS
# in httpd.conf
PerlTransHandler Apache::No404Proxy::Google
PerlSetVar GoogleLicenseKey **************
Apache::No404Proxy::Google is one of the implementations of Apache::No404Proxy. This module uses SOAP::Lite to fetch Google cache.
Download (0.003MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
libgee 0.1.0
libgee is a collection library providing GObject-based interfaces and classes for commonly used data structures. more>>
libgee is a collection library providing GObject-based interfaces and classes for commonly used data structures.
The project provides Collection, Iterator, List, Iterable, Map, and Set interfaces and HashMap, ArrayList and HashSet implementations.
<<lessThe project provides Collection, Iterator, List, Iterable, Map, and Set interfaces and HashMap, ArrayList and HashSet implementations.
Download (0.34MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
816 downloads
pypng 0.0.9
Python PNG encoder/decoder more>>
pypng 0.0.9 is an excellent and must-have product which offers you a Python module to decode (read) and encode (write) PNG files. All PNG formats are supported. Pure Python so that it can be installed as easily as possible and used on different Python implementations.
Requirements: Python
Added: 2009-06-16 License: MIT/X Consortium Lic... Price: FREE
16 downloads
libqmsg 0.4
libqmsg is a library implementing parts of the messaging functionality as found in the commonly used realtime microkernel OS. more>>
libqmsg is a library implementing parts of the messaging functionality as found in the commonly used realtime microkernel operating systems, using Linux shared memory and POSIX messaging queues.
The implementation does not aim to reach the speed of original implementations, but rather to simplify software porting process and as a basis for more sophisticated solutions.
<<lessThe implementation does not aim to reach the speed of original implementations, but rather to simplify software porting process and as a basis for more sophisticated solutions.
Download (0.35MB)
Added: 2005-10-05 License: MPL (Mozilla Public License) Price:
1480 downloads
libstratanetsh 2.3.0
libstratanetsh is used in development of applications which require direct communication with a Foxmoxie Networks STRATA routers more>>
libstratanetsh project provides source-code to a library (formerly called libnetshclient) for use in the development of applications which require direct communication (using the netsh protocol) with a Foxmoxie Networks STRATA-family router, or any STRATA protocol-capable implementation.
This library may be used to develop client or server implementations, and has also been used for purposes ranging from file transfer to voice applications.
Enhancements:
- TLS implementation optimized, updated API, server-operation support, bugfixes
<<lessThis library may be used to develop client or server implementations, and has also been used for purposes ranging from file transfer to voice applications.
Enhancements:
- TLS implementation optimized, updated API, server-operation support, bugfixes
Download (0.015MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Convert::PEM::CBC 0.0.7
Convert::PEM::CBC is a Perl module for Cipher Block Chaining Mode implementation. more>>
Convert::PEM::CBC is a Perl module for Cipher Block Chaining Mode implementation.
SYNOPSIS
use Convert::PEM::CBC;
my $cbc = Convert::PEM::CBC->new(
Cipher => Crypt::DES_EDE3,
Passphrase => foo
);
$cbc->encrypt($plaintext);
Convert::PEM::CBC implements the CBC (Cipher Block Chaining) mode for encryption/decryption ciphers; the CBC is designed for compatability with OpenSSL and may not be compatible with other implementations (such as SSH).
<<lessSYNOPSIS
use Convert::PEM::CBC;
my $cbc = Convert::PEM::CBC->new(
Cipher => Crypt::DES_EDE3,
Passphrase => foo
);
$cbc->encrypt($plaintext);
Convert::PEM::CBC implements the CBC (Cipher Block Chaining) mode for encryption/decryption ciphers; the CBC is designed for compatability with OpenSSL and may not be compatible with other implementations (such as SSH).
Download (0.020MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1162 downloads
Heimdal 1.0.1
Heimdal is an implementation of Kerberos 5. more>>
Heimdal is an implementation of Kerberos 5, largely written in Sweden (which was important when we started writing it, less so now). Heimdal project is freely available under a three clause BSD style license.
Other free implementations include the one from MIT, and Shishi.
Enhancements:
- Several bugs in iprop were fixed.
- Platforms without dlopen are now supported.
- RFC3526 modp group14 is now included by default.
- [kdc] database = { } entries are now handled without realm = stanzas.
- krb5_get_renewed_creds and kaserver preauth were fixed along with other bugs.
<<lessOther free implementations include the one from MIT, and Shishi.
Enhancements:
- Several bugs in iprop were fixed.
- Platforms without dlopen are now supported.
- RFC3526 modp group14 is now included by default.
- [kdc] database = { } entries are now handled without realm = stanzas.
- krb5_get_renewed_creds and kaserver preauth were fixed along with other bugs.
Download (4.3MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
806 downloads
libCoroutine 0.9
libCoroutine is a simple stackfull coroutine implementation, largely based on ucontext and fibers. more>>
libCoroutine is a simple stackfull coroutine implementation, largely based on ucontext and fibers.
This library is built from the coroutine implementation of the Io programming language project.
<<lessThis library is built from the coroutine implementation of the Io programming language project.
Download (0.012MB)
Added: 2006-05-22 License: BSD License Price:
1254 downloads
libcprops 0.1.6
cprops provides standard generic data structures, socket and threading facilities in c. more>>
The c prototyping tools library consists of implementations for several widely used data structures and patterns as well as rudimentary tcp / httpd functionality. Object oriented development environments usually feature readymade implementations of such tools.
cprops provides standard generic data structures, socket and threading facilities in c.
The libcprops fills in a gap in between the standard c api dating back to the 1970s and functionality needed the times of ubiquitous http services everywhere.
Coding in c often allows better performance and closer control over application behavior, which can be crucial in many real life situations.
The purpose of the libcprops is to provide generic tools for application development in plain c covering basic data structure implementations, persistence, threading and tcp communication. It was almost called libc2ee but luckily this was narrowly avoided.
<<lesscprops provides standard generic data structures, socket and threading facilities in c.
The libcprops fills in a gap in between the standard c api dating back to the 1970s and functionality needed the times of ubiquitous http services everywhere.
Coding in c often allows better performance and closer control over application behavior, which can be crucial in many real life situations.
The purpose of the libcprops is to provide generic tools for application development in plain c covering basic data structure implementations, persistence, threading and tcp communication. It was almost called libc2ee but luckily this was narrowly avoided.
Download (0.31MB)
Added: 2006-09-16 License: GPL (GNU General Public License) Price:
1135 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above implementations search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed