aboutsummaryrefslogtreecommitdiff
path: root/rp/utils
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2015-11-26 20:03:49 +0000
committerRob Austein <sra@hactrn.net>2015-11-26 20:03:49 +0000
commit2a1d053dddf1c30bb2b44ec10af6c08301a7651d (patch)
treef488a356d5ee3db96c1132b86089519f38bbbbbd /rp/utils
parent2881d5e0a358d825646fc7c87775c758ecec7d36 (diff)
Oops, RRDP now mandates HTTPS instead of HTTP.
svn path=/branches/tk705/; revision=6195
Diffstat (limited to 'rp/utils')
-rwxr-xr-xrp/utils/uri6
1 files changed, 3 insertions, 3 deletions
diff --git a/rp/utils/uri b/rp/utils/uri
index 65ca117b..9c26d9aa 100755
--- a/rp/utils/uri
+++ b/rp/utils/uri
@@ -40,8 +40,8 @@ class Certificate(object):
def first_rsync(self, uris):
return self.first_whatever(uris, "rsync://")
- def first_http(self, uris):
- return self.first_whatever(uris, "http://")
+ def first_https(self, uris):
+ return self.first_whatever(uris, "https://")
def __init__(self, fn):
try:
@@ -60,7 +60,7 @@ class Certificate(object):
("SIA:caRepository", self.first_rsync(sia[0])),
("SIA:rpkiManifest", self.first_rsync(sia[1])),
("SIA:signedObject", self.first_rsync(sia[2])),
- ("SIA:rpkiNotify", self.first_http(sia[3])),
+ ("SIA:rpkiNotify", self.first_https(sia[3])),
("CRLDP", self.first_rsync(x.getCRLDP())))
def __str__(self):