// // System.Security.Cryptography MD5 Class implementation // // Authors: // Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu) // // Copyright 2001 by Matthew S. Ford. // using System.Security.Cryptography; namespace System.Security.Cryptography { /// /// Common base class for all derived MD5 iplementations. /// public abstract class MD5 : HashAlgorithm { /// /// Called from constructor of derived class. /// protected MD5 () { } /// /// Creates the default derived class. /// public static new MD5 Create () { return new MD5CryptoServiceProvider(); } /// /// Creates a new derived implementation. /// /// FIXME: No clue. Specifies which derived class to create? [MonoTODO] public static new MD5 Create (string st) { return Create(); } } }