diff options
Diffstat (limited to 'monitor/verify_sct.py')
| -rwxr-xr-x | monitor/verify_sct.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/monitor/verify_sct.py b/monitor/verify_sct.py index 32e460d..54b08c7 100755 --- a/monitor/verify_sct.py +++ b/monitor/verify_sct.py @@ -10,6 +10,8 @@ import subprocess import base64 import struct +# from monitor_conf import ctlogs + OPENSSL_PATH="/usr/local/ssl/bin/openssl" LOGS = [ @@ -181,7 +183,8 @@ def ReadSCT( SCT ): for Log in LOGS: if Log["LogID"] == Base64LogID: print( "Log found : %s" % Log["Name"]) - PubKey = Log["Key"] + PubKey = Log["Key"] + print PubKey if not PubKey: print("Log not found") |
