mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.x509: Fix to include wildcard identity
This commit is contained in:
parent
da1bffce1d
commit
1f4fb79d2e
1 changed files with 3 additions and 0 deletions
|
@ -232,8 +232,11 @@ local function get_identities(cert) --> map of names to sets of services
|
|||
if sans then
|
||||
if sans["dNSName"] then -- Valid for any service
|
||||
for _, name in ipairs(sans["dNSName"]) do
|
||||
local is_wildcard = name:sub(1, 2) == "*.";
|
||||
if is_wildcard then name = name:sub(3); end
|
||||
name = idna_to_unicode(nameprep(name));
|
||||
if name then
|
||||
if is_wildcard then name = "*." .. name; end
|
||||
names:set(name, "*", true);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue