Skip to content

Commit

Permalink
Don't use flaky URL for FIPS186-4
Browse files Browse the repository at this point in the history
  • Loading branch information
koba-e964 committed Dec 6, 2023
1 parent 42ac655 commit 18b3711
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion algorithm/openssl-3.1.3-RSA/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions check_links.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 18b3711

Please sign in to comment.