blob: a5315026f180b484526ad41fe480940ad157563f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local name = require"_openssl.x509.name"
name.interpose("__tostring", function (self)
local t = { }
for k, v in pairs(self) do
t[#t + 1] = k .. "=" .. v
end
return table.concat(t, ", ")
end)
return name
|