diff options
Diffstat (limited to 'src/tests/unit_x509.cpp')
-rw-r--r-- | src/tests/unit_x509.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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]"; |