public CryptoHash(string key, HashAlgorithm algorithm) { this._encryptionOptions = new CryptoConfig(true, key); this._algorithm = algorithm; }
public CryptoHash(CryptoConfig options, HashAlgorithm algorithm) { this._encryptionOptions = options; this._algorithm = algorithm; }
public CryptoHash() { this._encryptionOptions = new CryptoConfig(); this._algorithm = CryptographyUtils.CreateHashAlgoMd5(); }