aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-01 13:40:16 -0400
committerJack Lloyd <[email protected]>2017-09-01 13:43:03 -0400
commit4cc355c689fa6a38a77ff2f97253ca4cf74ffd28 (patch)
tree799b6f8abd776fbe68222f973810932d3ebe731b /src
parent18bfd3ff33dc7fbb45465b2c0a4c997d716882f8 (diff)
Change http://botan.randombit.net to https URIs
Not a big deal since the site already uses HSTS, but whatever. [ci skip]
Diffstat (limited to 'src')
-rw-r--r--src/build-data/innosetup.in2
-rwxr-xr-xsrc/python/botan2.py2
-rwxr-xr-xsrc/scripts/dist.py2
-rw-r--r--src/tests/unit_x509.cpp6
4 files changed, 6 insertions, 6 deletions
diff --git a/src/build-data/innosetup.in b/src/build-data/innosetup.in
index e9109e65f..86df5f27b 100644
--- a/src/build-data/innosetup.in
+++ b/src/build-data/innosetup.in
@@ -5,7 +5,7 @@ AppName=Botan
AppVerName=Botan %{version}
AppPublisher=Jack Lloyd
-AppPublisherURL=http://botan.randombit.net/
+AppPublisherURL=https://botan.randombit.net/
AppVersion=%{version}
VersionInfoCopyright=Copyright (C) 1999-2012 Jack Lloyd and others
diff --git a/src/python/botan2.py b/src/python/botan2.py
index 6d1ee25fe..d1c56702b 100755
--- a/src/python/botan2.py
+++ b/src/python/botan2.py
@@ -2,7 +2,7 @@
"""
Python wrapper of the botan crypto library
-http://botan.randombit.net
+https://botan.randombit.net
(C) 2015,2017 Jack Lloyd
(C) 2015 Uri Blumenthal (extensions and patches)
diff --git a/src/scripts/dist.py b/src/scripts/dist.py
index 9ec0e6738..7f666904c 100755
--- a/src/scripts/dist.py
+++ b/src/scripts/dist.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python2
"""
-Release script for botan (http://botan.randombit.net/)
+Release script for botan (https://botan.randombit.net/)
(C) 2011, 2012, 2013, 2015, 2016 Jack Lloyd
diff --git a/src/tests/unit_x509.cpp b/src/tests/unit_x509.cpp
index 66cbddb36..0979325ce 100644
--- a/src/tests/unit_x509.cpp
+++ b/src/tests/unit_x509.cpp
@@ -40,7 +40,7 @@ Botan::X509_Cert_Options ca_opts()
{
Botan::X509_Cert_Options opts("Test CA/US/Botan Project/Testing");
- opts.uri = "http://botan.randombit.net";
+ opts.uri = "https://botan.randombit.net";
opts.dns = "botan.randombit.net";
opts.email = "[email protected]";
@@ -53,7 +53,7 @@ Botan::X509_Cert_Options req_opts1(const std::string& algo)
{
Botan::X509_Cert_Options opts("Test User 1/US/Botan Project/Testing");
- opts.uri = "http://botan.randombit.net";
+ opts.uri = "https://botan.randombit.net";
opts.dns = "botan.randombit.net";
opts.email = "[email protected]";
@@ -78,7 +78,7 @@ Botan::X509_Cert_Options req_opts2()
{
Botan::X509_Cert_Options opts("Test User 2/US/Botan Project/Testing");
- opts.uri = "http://botan.randombit.net";
+ opts.uri = "https://botan.randombit.net";
opts.dns = "botan.randombit.net";
opts.email = "[email protected]";