示例#1
0
 private void CreateHash(string algoName)
 {
     this.algo = HashAlgorithm.Create(algoName);
     this.hashName = algoName;
     this.block = new BlockProcessor((ICryptoTransform)this.algo, 8);
 }
示例#2
0
 private void CreateHash(string algoName)
 {
     this.algo     = HashAlgorithm.Create(algoName);
     this.hashName = algoName;
     this.block    = new BlockProcessor((ICryptoTransform)this.algo, 8);
 }