From 18b371102753277caef872e80bbd17e43637974d Mon Sep 17 00:00:00 2001 From: koba-e964 <3303362+koba-e964@users.noreply.github.com> Date: Wed, 6 Dec 2023 15:44:55 +0900 Subject: [PATCH] Don't use flaky URL for FIPS186-4 --- algorithm/openssl-3.1.3-RSA/README.md | 2 +- check_links.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/algorithm/openssl-3.1.3-RSA/README.md b/algorithm/openssl-3.1.3-RSA/README.md index a34a57c..4e6e9a7 100644 --- a/algorithm/openssl-3.1.3-RSA/README.md +++ b/algorithm/openssl-3.1.3-RSA/README.md @@ -41,4 +41,4 @@ RSA の鍵生成 (素数 2 個の生成) アルゴリズムの紹介。 [[FIPS186-4]]: National Institute of Standards and Technology (2013) Security Requirements for Cryptographic Modules. (Department of Commerce, Washington, D.C.), Federal Information Processing Standards Publications (FIPS PUBS) 186-4. -[FIPS186-4]: https://csrc.nist.gov/pubs/fips/186-4/final +[FIPS186-4]: https://www.omgwiki.org/dido/doku.php?id=dido:public:ra:xapend:xapend.b_stds:tech:nist:dss diff --git a/check_links.go b/check_links.go index 962d5ea..c0a9a90 100644 --- a/check_links.go +++ b/check_links.go @@ -13,8 +13,8 @@ import ( "time" ) -var httpRegex = regexp.MustCompile("http://[-._%/[:alnum:]]+") -var httpsRegex = regexp.MustCompile("https://[-._%/[:alnum:]]+") +var httpRegex = regexp.MustCompile("http://[-._%/[:alnum:]?:=+]+") +var httpsRegex = regexp.MustCompile("https://[-._%/[:alnum:]?:=+]+") // config var retryCount = 5