public static new _MD4 Create (string hashName) { object o = CryptoConfig.CreateFromName (hashName); // in case machine.config isn't configured to use any MD4 implementation if (o == null) { o = new MD4Managed (); } return (_MD4) o; }
public static new _MD4 Create(string hashName) { object o = CryptoConfig.CreateFromName(hashName); // in case machine.config isn't configured to use any MD4 implementation if (o == null) { o = new MD4Managed(); } return((_MD4)o); }