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的更多相关文章
随机推荐
- JVM--Garbage First
Garbage First Garbage First 简称 G1,它的目标是要做到尽量减少 GC 所导致的应用暂停的时间,让应用达到准实时的效果,同时保持 JVM 堆空间的利用率,其最大的特色在于允 ...
- javascript 入门之简单换肤效果
大家好,我是小强老师,这里简单入门 做一个换肤效果 效果如图所示: 这个案例思路分为两部分: 获取元素对象. var pic1 = document.getElementById('pic1'); v ...
- zk mysql 主从自动切换
zookeeper测试: DBI 版本: /DBI-1.616# zjtest7-redis:/root/DBD-mysql-4.031# perl Makefile.PL Can't exec &q ...
- win7下wordPress本地搭建博客详解(深度亲测整理---傻瓜式详细教程)
搭建一个wordPress作为一个个人博客本来是特别简单的事情,但是网上的各种转载让初学者举步维艰,我就本身条件而言,会java EE,懂mysql都花费了我好长时间才搭建好本地博客. 注意:这个是本 ...
- 文件操作中的FLAG(O_RDONLY,O_WRONLY )的值
#include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> void main(void) { ...
- 用来解析,格式化,存储和验证国际电话号码:libphonenumber
用来解析,格式化,存储和验证国际电话号码:libphonenumber libphonenumber是Google的公共Java.C++和Javascript库用来解析,格式化,存储和验证国际电话号码 ...
- JVM调优总结(四)-垃圾回收面临的问题
如何区分垃圾 上面说到的“引用计数”法,通过统计控制生成对象和删除对象时的引用数来判断.垃圾回收程序收集计数为0的对象即可.但是这种方法无法解决循环引用.所以,后来实现的垃圾判断算法中,都是从程序运行 ...
- 【老鸟学算法】大整数乘法——算法思想及java实现
算法课有这么一节,专门介绍分治法的,上机实验课就是要代码实现大整数乘法.想当年比较混,没做出来,颇感遗憾,今天就把这债还了吧! 大整数乘法,就是乘法的两个乘数比较大,最后结果超过了整型甚至长整型的最大 ...
- MongoDB(二)——安装配置了解
前边介绍了MongoDB的大概理论知识,这篇来对MongoDB进行一下安装使用,支持安装在windows和linux上,当然了很多其它情况下我们是安装在linux上,由于毕竟server用linux的 ...
- Websense一面、二面及Offer
1. 写脚本打印当前目录(子目录)下文件内容中包含abc字符串文件 2. 用C写一个管道通信的程序:父进程向子进程写一个”hello word”字符串,子进程输出. 3. 解释I-node. 4 ...