util.x509: Nameprep commonName once

This commit is contained in:
Kim Alvefur 2019-09-10 18:16:11 +02:00
parent f11e620eb7
commit 4caae04421

View file

@ -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;