RapidCRC : Home
What is RapidCRC?
RapidCRC is a tool for windows for checking and creating CRC32 and MD5 checksums; this comprises:
- SFV files
- MD5 files
- specialty: direct support for CRC32 in the filename (common for anime releases; for example "MyFile [45DEF3A0].avi")
This helps you to check and ensure that your files are OK and not corrupted.
Goal is to use the fastest available open source (assembly) implementations for this task. Currently these implementations are used in RapidCRC:
- CRC32: i386 assembly implementation (one byte table lookup)
- MD5: OpenSSL MD5 i386 assembly implementation
- MD5: reference implementation from RFC (much slower; available at compile time. Not used in the release version of RapidCRC)
These are currently considered to be the fastest existing implementations(*). If you know of even faster implementations please drop me a note.
News
| year.month.day | |
| 2005.02.05 | RapidCRC 0.6.1 released (bugfix release) |
| 2005.01.20 | RapidCRC 0.6 released and Website updated |
| 2004.11.25 | RapidCRC 0.5 released |
| 2004.11.10 | Some small corrections in the faq (es. the Visual Style Screenshots) |
| 2004.10.25 | RapidCRC 0.4 released |
| 2004.10.09 | Site moves to Sourceforge.net |
| 2004.09.03 | FAQ updated |
| 2004.09.02 | RapidCRC 0.3.2 released |
| 2004.08.29 | Website and FAQ updated. |
| 2004.08.28 | Forum is now open |
| 2004.08.27 | RapidCRC 0.3 released. First Release to the public |
RapidCRC : Home的更多相关文章
随机推荐
- POJ 3624 01背包
初学DP,用贪心的思想想解题,可是想了一个多小时还是想不出. //在max中的两个参数f[k], 和f[k-weight[i]]+value[i]都是表示在背包容量为k时的最大价值 //f[k]是这个 ...
- 15+优秀的jQuery视差插件
jQuery视差效果的应用越来越广泛了,今天就给大家分享一些优秀的jQuery视差插件,它们确实太棒了! 原文地址:http://www.goodfav.com/jquery-parallax-plu ...
- SystemTap----将SystemTap脚本编译成内核模块
当运行SystemTap脚本时,会根据脚本生成一个内核模块,然后插入到系统中执行后退出.这个过程总共分为5个阶段:parse, elaborate, translate, compile, run ...
- Android动态设定GridView的高度,固定column,实现高度自适应
动态设定GridView的高度,固定column,根据gridview中的item个数设定高度: 调用以下方法: public static void setListViewHeightBasedOn ...
- 一天一个类,一点也不累之HashSet
最近忙着一个小项目结题,故没能按时完成[一天一个类,一点也不累],还好项目优秀,算是对自己一点点的安慰和鼓励.~~~ 今天要说的是HashSet 既然是继承自Set,那么就必须有Set的一些属性,比如 ...
- Qt序列化格式分析(qint,QString)(非常简单好用)
最近项目需要进行QT开发环境下对传输对象进行序列化与反序列化处理,对基本类型的处理在使用QT默认的序列化方式还是完全手工序列化这两种方式之间有些犹疑不定,边想了解下QT默认序列化基本类型的格式,项目中 ...
- Android NFC传输联系人VCF
import android.app.Activity; import android.content.ContentResolver; import android.content.Context; ...
- 转:Android -- ActivityLifeCycleCallbacks
http://www.cnblogs.com/yydcdut/p/4945990.html 一个不常见类的使用,名字叫ActivityLifeCycleCallbacks 通常一个项目中有很多个act ...
- php Smarty模板引擎配置与测试
Smarty简介 smarty是一个使用PHP写出来的模板PHP模板引擎,它提供了逻辑与外在内容的分离,简单的讲,目的就是要使用PHP程序员同美工分离,使用的程序员改变程序的逻辑内容不会影响到美工的页 ...
- 基于visual Studio2013解决C语言竞赛题之1004平均值
题目 解决代码及点评 /************************************************************************/ /* 4. 编一个程序, ...