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 -- 类加载
学习自周志明老师的<深入理解Java虚拟机>第二版 类的加载时机 如上图所示: 类从被加载到虚拟机内存中开始,直到卸载出内存为止,它的整个生命周期包括了: 加载.验证.准备.解析.初始化. ...
- VC++共享数据段实现进程之间共享数据
当我写了一个程序,我希望当这个程序同时运行两遍的时候,两个进程之间能共享一些全局变量,怎么办呢?很简单,使用VC\VC++的共享数据段.; #pragma data_seg()//恢复到正常段继续编程 ...
- oschina数据库相关
数据库相关 110数据库服务器 233NoSQL数据库 18MySQL衍生版 6开源XML数据库 311数据库管理工具 117数据库调整和优化 274数据库驱动程序 41数据库建模
- Linux高性能server编程——高级I/O函数
高级I/O函数 pipe函数 pipe函数用于创建一个管道,实现进程间的通信. #include <unistd.h> int pipe(int pipefd[2]); 通过pipe ...
- stm32之CAN总线基础
can总线协议概述: CAN是Controller Area Network的缩写,由德国博世公司开发:CAN通过ISO11891以及ISO11519进行了标准化: CAN总线的特点: 1.多 ...
- SQL查询重复记录、删除重复记录方法
查找所有重复标题的记录:SELECT * FROM t_info a WHERE ((SELECT COUNT(*) FROM t_info WHERE Title = a.Title) > 1 ...
- ZOJ 3492 模拟循环链表线性查找
WA了好几次最后找到错因是因为数组开小了! = = string whose length never exceeds 20 所以至少要开到21 = = ,我却一直开20 ╮(╯▽╰)╭ AC代码: ...
- 浙江大学PAT上机题解析之3-05. 求链式线性表的倒数第K项
给定一系列正整数,请设计一个尽可能高效的算法,查找倒数第K个位置上的数字. 输入格式说明: 输入首先给出一个正整数K,随后是若干正整数,最后以一个负整数表示结尾(该负数不算在序列内,不要处理). 输出 ...
- Android屏幕大小适配问题解决
转载: 一.一些基本概念 1.长度(真实长度):英寸.inch 2.分辨率:density 每英寸像素数 dpi(密度) 3.像素:px 4.dip的公式:px /dip=dpi/160 所以 d ...
- javascript笔记整理(数据类型强制/隐式转换 )
A.数据类型强制转换 1.转换为数值类型 Number(参数) 把任何的类型转换为数值类型 A.如果是布尔值,false为0,true为1 var a=false;alert(Number(a)); ...