summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xverify.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/verify.py b/verify.py
index 25e3c42..e3f3bc8 100755
--- a/verify.py
+++ b/verify.py
@@ -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))