mirror of
https://github.com/brunoos/luasec.git
synced 2024-11-08 06:28:26 +01:00
23 lines
518 B
Lua
23 lines
518 B
Lua
local print = print
|
|
local ipairs = ipairs
|
|
|
|
local _ENV = {}
|
|
|
|
function _ENV.show(cert)
|
|
print("Serial:", cert:serial())
|
|
print("NotBefore:", cert:notbefore())
|
|
print("NotAfter:", cert:notafter())
|
|
print("--- Issuer ---")
|
|
for k, v in ipairs(cert:issuer()) do
|
|
print(v.name .. " = " .. v.value)
|
|
end
|
|
|
|
print("--- Subject ---")
|
|
for k, v in ipairs(cert:subject()) do
|
|
print(v.name .. " = " .. v.value)
|
|
end
|
|
print("----------------------------------------------------------------------")
|
|
end
|
|
|
|
return _ENV
|