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的更多相关文章

随机推荐

  1. Ubuntu网络频繁掉线解决方案

    年底了,实验室终于给配了个电脑(Ubuntu系统),博主欣喜若狂啊,然而装好后发现无线网频繁掉线,重启网络后能正常上网2~3分钟然后又掉线,再重启又能上网2~3分钟然后再掉线,博主那个不爽啊,于是各种 ...

  2. Python 2.7 学习笔记 字典(map)的使用

    python中的字典,就是通常说的map,即 key/value集合的数据结构. 本文来介绍下在python下如何使用字典. 对于map这种数据结构能干什么,我们就不说了,这是一个常见的数据结构,我们 ...

  3. 基于visual Studio2013解决算法导论之047赫夫曼编码

     题目 赫夫曼编码 解决代码及点评 // 赫夫曼编码.cpp : 定义控制台应用程序的入口点. // #include <iostream> #include <stdio.h ...

  4. 深入浅出Win32多线程设计之MFC的多线程-线程与消息队列(经典)

    1.创建和终止线程 在MFC程序中创建一个线程,宜调用AfxBeginThread函数.该函数因参数不同而具有两种重载版本,分别对应工作者线程和用户接口(UI)线程. 工作者线程 CWinThread ...

  5. Android基础【1】杀死进程(强行停止)应用程序的方法

    写在前面: 进入手机ODM已经很久,经历过几个项目项目下来,对高通.展讯.Marvell平台都进行了接触,对于我个人来说,参与手机系统项目的开发与维护,最明显的好处是可以深入的了解某一功能的具体实现过 ...

  6. Case of the Zeros and Ones

    Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Description Andrew ...

  7. BZOJ 3685: 普通van Emde Boas树( 线段树 )

    建颗权值线段树就行了...连离散化都不用... 没加读入优化就TLE, 加了就A掉了...而且还快了接近1/4.... ---------------------------------------- ...

  8. Android ReceiverCallNotAllowedException: BroadcastReceiver components are not allowed to register to receive intents

    ReceiverCallNotAllowedException mContext.registerReceiver()不能在BroadcastReceiver的onReceive()里面调用 可以通过 ...

  9. 一个带动画效果的颜色选择对话框控件AnimatedColorPickerDialog

    android4.4的日历中选择日程显示颜色的时候有一个颜色选择对话框非常漂亮,模仿他的界面我实现了一个类似的对话框,而且带有动画效果. 代码的实现可讲的地方不多,主要是采用了和AlertDialog ...

  10. Java基础08 继承

    作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! 继承(inheritance)是面向对象的重要概念.继承是除组合(composit ...