mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.x509: Nameprep commonName once
This commit is contained in:
parent
f11e620eb7
commit
4caae04421
1 changed files with 5 additions and 2 deletions
|
@ -236,8 +236,11 @@ local function get_identities(cert) --> set of names
|
|||
local subject = cert:subject();
|
||||
for i = 1, #subject do
|
||||
local dn = subject[i];
|
||||
if dn.oid == oid_commonname and nameprep(dn.value) then
|
||||
names[dn.value] = true;
|
||||
if dn.oid == oid_commonname then
|
||||
local name = nameprep(dn.value);
|
||||
if name then
|
||||
names[name] = true;
|
||||
end
|
||||
end
|
||||
end
|
||||
return names;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue