Guest User

Untitled

a guest
Sep 18th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. if mode == Login:
  2. LoginUsername = input("Username: ")
  3. LoginPassword = input("Password: ")
  4. hash_object3 = hashlib.sha384(LoginPassword.encode())
  5. LoginPassword = (hash_object3.hexdigest())
  6. ???????????????????????????????????????????????????????????
  7. else:
  8. print("Incorrect Username or Password")
  9.  
  10. # Opens the file and stores it in the file variable.
  11.  
  12. with open("InfoStore.txt", "r") as file:
  13.  
  14. # file.read() returns all of the text in the file as one string,
  15. # including newline characters
  16.  
  17. text = file.read()
Add Comment
Please, Sign In to add comment