Projects tagged ‘hash’ and ‘php’


[9 total ]

1 Users
 

Native implementations of common message digest algorithms using a generic factory method.
Created over 3 years ago.

1 Users

This is a module for Snappad that allows you to quickly and easily lock down your website.
Created about 1 year ago.

0 Users

A proof-of-concept javascript distributed computing implementation. Test it out at http://jsdc.appspot.com
Created 12 months ago.

0 Users

A data base can be created from set of text files of key-value format called entities. A set of entities can be queried, grouped and managed in stream manner. One can execute SQL-like statements over ... [More] them. Current implementation Language implementation status availability current release php alpha svn to be announced C++ in progress svn to be announced java in progress svn to be announced Further reading: About and Introduction [Less]
Created 8 months ago.

0 Users

Need to start a bittorent indexer/tracker ? Need codes for staring it ? You can find it all here right from a code to check the hash to a scraper.
Created 12 months ago.

0 Users

DigestJ is digest authentication (does not transmit the user's password to the server) using JavaScript with an extension to support salted hashes. It is currently implemented as a jQuery plug-in. ... [More] DigestJ is a partial implementation of RFC 2617. For more details, see the DigestJ Wiki, the discussions group and/or the source code. Demo [Less]
Created 12 months ago.

0 Users
 

Flexihash is a small PHP library which implements consistent hashing, which is most useful in distributed caching. It requires PHP5 and uses SimpleTest for unit testing.
Created about 1 year ago.

0 Users

php编写的文件型缓存解决方案纯php实现, 无须任何扩展,支持php4 / 5 使用lru算法自动清理过期内容 可以安全用于多进程并发 最大支持1G缓存文件 ... [More] 使用hash定位,读取迅速 用法样例require('../secache/secache.php'); $cache = new secache; $cache->workat('cachedata'); $key = md5('test'); //必须自己做hash,前4位是16进制0-f,最长32位。 $value = '值数据'; //必须是字符串 $cache->store($key,$value); if($cache->fetch($key,$return)){ echo ''.$key.'=>'.$return.''; }else{ echo 'Data get failed! '.$key.''; }点此下载 基于性能考虑,几点约束键需要自己做hash处理,最长32位. 值必须是字符串。如果要存对象,请自己serialize 应用的项目shopex购物系统 [Less]
Created 9 months ago.

0 Users

Since PHP does have an option to input a file to check CRC32 of a file, this script/function was made in-order to fulfill the needs of doing so.
Created 11 months ago.