This snippet of code was written as part of an article - Password Protecting You Python Application. The code requires a file with an encrypted password. The script to generate an encrypted file is Code To Store Encrypted Password in a File.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | import sys
import hashlib
import getpass
def main(argv):
	if len(argv) != 1:
		sys.exit('Usage: pass_auth3.py <file_name>')
	print '\nPassword Request Program v.04\n'
	try:
		file_conn = open(sys.argv[1])
		password = file_conn.readline()[:-1]
		file_conn.close()
	except:
		sys.exit('There was a problem reading the file!')
		
	pass_try = 0 
	x = 3
	
	while pass_try < x:
		user_input = hashlib.sha224(getpass.getpass('Please Enter Password: ')).hexdigest()
		if user_input != password:
			pass_try += 1
			print 'Incorrect Password, ' + str(x-pass_try) + ' more attempts left\n'
		else:
			pass_try = 4
			
	if pass_try == x and user_input != password:
		sys.exit('Incorrect Password, terminating... \n')
	print 'User is logged in!\n'		
			
if __name__ == "__main__":
	main(sys.argv[1:])
 | 

 Download
Download Copy to clipboard
Copy to clipboard