// // System.Security.Cryptography SHA384 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 SHA384 iplementations. /// public abstract class SHA384 : HashAlgorithm { /// /// Called from constructor of derived class. /// public SHA384 () { } /// /// Creates the default derived class. /// public static new SHA384 Create () { return new SHA384Managed(); } /// /// Creates a new derived class. /// /// FIXME: No clue. Specifies which derived class to create? [MonoTODO] public static new SHA384 Create (string st) { return Create(); } } }