public static PasswordVerificationResult VerifySHA256HashedPassword(string hashedPassword, [NotNull] string password)
 {
     return(SHA256PasswordHasher.VerifyHashedPassword(hashedPassword, password));
 }