// // System.Security.Cryptography.SHA512Managed.cs // // Authors: // Dan Lewis (dihlewis@yahoo.co.uk) // // (C) 2002 // // Stubbed. // using System; namespace System.Security.Cryptography { [MonoTODO] public class SHA512Managed : SHA512 { public SHA512Managed () { } public override void Initialize () { } // protected protected override void HashCore (byte[] rgb, int start, int count) { } protected override byte[] HashFinal () { return null; } } }