diff options
author | Kim Alvefur <zash@zash.se> | 2022-08-05 16:54:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-08-05 16:54:15 +0200 |
commit | 93830ecf40f487100170e22782d1966aa325067c (patch) | |
tree | 2e3b4ea65b2541ee22dcd8bb1f566552f006d115 /util | |
parent | 0e7e43f62ff33e3d4cdb4f4d079c5d2c1b07aca9 (diff) | |
download | prosody-93830ecf40f487100170e22782d1966aa325067c.tar.gz prosody-93830ecf40f487100170e22782d1966aa325067c.zip |
various: Update IETF RFC URLs for tools.ietf.org transition
See https://www.ietf.org/blog/finalizing-ietf-tools-transition/
Already done in various other places.
Diffstat (limited to 'util')
-rw-r--r-- | util/x509.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/x509.lua b/util/x509.lua index 76b50076..51ca3c96 100644 --- a/util/x509.lua +++ b/util/x509.lua @@ -11,12 +11,12 @@ -- IDN libraries complicate that. --- [TLS-CERTS] - http://tools.ietf.org/html/rfc6125 --- [XMPP-CORE] - http://tools.ietf.org/html/rfc6120 --- [SRV-ID] - http://tools.ietf.org/html/rfc4985 --- [IDNA] - http://tools.ietf.org/html/rfc5890 --- [LDAP] - http://tools.ietf.org/html/rfc4519 --- [PKIX] - http://tools.ietf.org/html/rfc5280 +-- [TLS-CERTS] - https://www.rfc-editor.org/rfc/rfc6125.html +-- [XMPP-CORE] - https://www.rfc-editor.org/rfc/rfc6120.html +-- [SRV-ID] - https://www.rfc-editor.org/rfc/rfc4985.html +-- [IDNA] - https://www.rfc-editor.org/rfc/rfc5890.html +-- [LDAP] - https://www.rfc-editor.org/rfc/rfc4519.html +-- [PKIX] - https://www.rfc-editor.org/rfc/rfc5280.html local nameprep = require "util.encodings".stringprep.nameprep; local idna_to_ascii = require "util.encodings".idna.to_ascii; |