diff options
-rwxr-xr-x | verify.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,7 +9,9 @@ import string import subprocess import sys -ssh = b'840fedcacdb9e86f1ae1e6a0060de471d4f5fb35' +with open('.shared_secret', 'r') as file: + ssh = file.read().strip() + ss = codecs.decode(ssh, 'hex') chh = ''.join(random.choice('0123456789abcdef') for i in range(126)) |