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