diff options
-rw-r--r-- | doc/manual/index.rst | 2 | ||||
-rw-r--r-- | src/build-data/innosetup.in | 2 | ||||
-rwxr-xr-x | src/python/botan2.py | 2 | ||||
-rwxr-xr-x | src/scripts/dist.py | 2 | ||||
-rw-r--r-- | src/tests/unit_x509.cpp | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/doc/manual/index.rst b/doc/manual/index.rst index a38624a9c..e094967d2 100644 --- a/doc/manual/index.rst +++ b/doc/manual/index.rst @@ -38,7 +38,7 @@ Especially recommended are: If you're doing something non-trivial or unique, you might want to at the very least ask for review/input on a mailing list such as the `metzdowd <http://www.metzdowd.com/mailman/listinfo/cryptography>`_ or -`randombit <http://lists.randombit.net/mailman/listinfo/cryptography>`_ +`randombit <https://lists.randombit.net/mailman/listinfo/cryptography>`_ crypto lists. And (if possible) pay a professional cryptographer or security company to review your design and code. 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]"; |