Skip to content

Instantly share code, notes, and snippets.

View orrpeles's full-sized avatar
🎯
Focusing

orrpeles

🎯
Focusing
View GitHub Profile
@orrpeles
orrpeles / passwd_generator.py
Created April 27, 2019 11:31
Password Generator
#!/bin/python
passwordFile = open('SecretPasswordFile.txt')
SecretPassword = passwordFile.read()
print('enter your passwd: ')
typedPassword = input()
if typedPassword == SecretPassword:
print('access granted')
else:
print('access denied')