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