aboutsummaryrefslogtreecommitdiff
path: root/scripts/http-client.py
blob: 1df47dad4cdb85ea39972aeb95a8b88e09750493 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $Id$

import rpki.config, rpki.https

msg = "This is a test.  This is only a test.  Had this been real you would now be really confused.\n"

cfg = rpki.config.parser("http-demo.conf")
section = "client"

print rpki.https.client(privateKey      = rpki.x509.RSA_Keypair(Auto_file = cfg.get( section, "https-key")),
                        certChain       = rpki.x509.X509_chain(Auto_files = cfg.multiget(section, "https-cert")),
                        x509TrustList   = rpki.x509.X509_chain(Auto_files = cfg.multiget(section, "https-ta")),
                        url             = cfg.get(section, "https-url"),
                        msg             = msg)