util.x509: Tell LuaSec we want UTF-8 data

This commit is contained in:
Kim Alvefur 2015-05-18 21:32:05 +02:00
parent 938380cacc
commit bac4a10b34

View file

@ -148,6 +148,9 @@ local function compare_srvname(host, service, asserted_names)
end
function verify_identity(host, service, cert)
if cert.setencode then
cert:setencode("utf8");
end
local ext = cert:extensions()
if ext[oid_subjectaltname] then
local sans = ext[oid_subjectaltname];