protected override string InnerApplyAlgorithm(string password)
 {
     return(HashSHA512Helper.HashWithSalt(SaltSizeInBytes, password));
 }
 bool RuntimePlatformUtils.Hashing.IHash.CheckHash(string password, string hash)
 {
     return(HashSHA512Helper.ValidateHashWithSalt(password, hash));
 }