diff options
author | Kim Alvefur <zash@zash.se> | 2014-04-27 01:02:54 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-04-27 01:02:54 +0200 |
commit | 2f70dc87b20dbfbac10f637b1ed8c5619699a663 (patch) | |
tree | f5037556f62b8874e8a8bd1c42bdcce76b190ffe /util | |
parent | 0f7452e6a709099cc722d9e7b6484b2cb12a417d (diff) | |
parent | f282f95465683073ef4c5a3d8fd2646eb8a8effe (diff) | |
download | prosody-2f70dc87b20dbfbac10f637b1ed8c5619699a663.tar.gz prosody-2f70dc87b20dbfbac10f637b1ed8c5619699a663.zip |
Merge 0.10->trunk
Diffstat (limited to 'util')
-rw-r--r-- | util/x509.lua | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/util/x509.lua b/util/x509.lua index 857f02a4..5e1b49e5 100644 --- a/util/x509.lua +++ b/util/x509.lua @@ -20,11 +20,9 @@ local nameprep = require "util.encodings".stringprep.nameprep; local idna_to_ascii = require "util.encodings".idna.to_ascii; +local base64 = require "util.encodings".base64; local log = require "util.logger".init("x509"); -local pairs, ipairs = pairs, ipairs; local s_format = string.format; -local t_insert = table.insert; -local t_concat = table.concat; module "x509" @@ -214,4 +212,23 @@ function verify_identity(host, service, cert) return false end +local pat = "%-%-%-%-%-BEGIN ([A-Z ]+)%-%-%-%-%-\r?\n".. +"([0-9A-Za-z+/=\r\n]*)\r?\n%-%-%-%-%-END %1%-%-%-%-%-"; + +function pem2der(pem) + local typ, data = pem:match(pat); + if typ and data then + return base64.decode(data), typ; + end +end + +local wrap = ('.'):rep(64); +local envelope = "-----BEGIN %s-----\n%s\n-----END %s-----\n" + +function der2pem(data, typ) + typ = typ and typ:upper() or "CERTIFICATE"; + data = base64.encode(data); + return s_format(envelope, typ, data:gsub(wrap, '%0\n', (#data-1)/64), typ); +end + return _M; |