摘要: hash算法实现代码如下:继承自c#的HashAlgorithm类View Code public class FNV1a : HashAlgorithm { private const uint Prime = 16777619; private const uint Offset = 2166136261; protected uint CurrentHashValue; public FNV1a() { this.HashSizeValue = 32; this.... 阅读全文
posted @ 2012-11-20 23:27 visionwang 阅读(2229) 评论(0) 推荐(0) 编辑