private void CreateHash(string algoName) { this.algo = HashAlgorithm.Create(algoName); this.hashName = algoName; this.block = new BlockProcessor((ICryptoTransform)this.algo, 8); }