diff options
author | Rob Austein <sra@hactrn.net> | 2007-08-25 15:09:49 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-08-25 15:09:49 +0000 |
commit | 7496e2285b84a84fbf5902b60096a5fbe1521b17 (patch) | |
tree | 627e81cc27da21c0983cc9f18ecbf4bf338a0692 /scripts/http-client.py | |
parent | f0a151ee8f1880a416ceac8589b843b2ae4f0557 (diff) |
Checkpoint
svn path=/scripts/http-client.py; revision=911
Diffstat (limited to 'scripts/http-client.py')
-rw-r--r-- | scripts/http-client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/http-client.py b/scripts/http-client.py index ed1019fa..53150a9c 100644 --- a/scripts/http-client.py +++ b/scripts/http-client.py @@ -1,6 +1,6 @@ # $Id$ -import rpki.https +import rpki.config, rpki.https -certInfo = rpki.https.CertInfo("Dave") +certInfo = rpki.https.CertInfo(rpki.config.parser("http-demo.conf"), "client") print rpki.https.client(certInfo=certInfo, msg="This is a test. This is only a test. Had this been real you would now be really confused.\n") |