(Python) It is often claimed that passwords do not get saved as plaintext anywhere in systems, and even the system administrator does not know your password. Given what you learned about hash functions. Explain how such a claim is possible.
In other words, how do systems perform authentication without having to store passwords in a format that can be read by the system administrators? Authentication is primarily the process of verifying that provided password is correct. Provide apseudocode for the function login:
def signup(username, password):'''store the user credential so that the system knows how toauthenticate the user in the future (when login() gets called).'''def login(username, password):'''returns True, if the provided username and password are correct'''
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here