Multiple choice technology security What is the method signature for hashing password? String hashPassword(String password) String hashPassword(String password, String accountName) String hashpassword(String password) None of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation The correct signature is String hashPassword(String password, String accountName). The accountName is used as the salt, so it's required. Option A is missing the salt parameter, and option C has incorrect case (hashpassword instead of hashPassword).