Skip to content
Snippets Groups Projects
Commit 344262c3 authored by Niels Möller's avatar Niels Möller
Browse files

*** empty log message ***

Rev: lib/modules/SSL.pmod/pem.pmod:1.4(DEAD)
parent 0b6e016d
No related branches found
No related tags found
No related merge requests found
/* pem.pmod
*
* Primitive PEM decoder. (Extracted from roxen/server/protocols/ssl3.pike).
*/
#error SSL.pem is obsolete! Use Tools.PEM instead.
object begin_pem = Regexp("-----BEGIN (.*)----- *$");
object end_pem = Regexp("-----END (.*)----- *$");
mapping(string:string) parse_pem(string f)
{
#ifdef PEM_DEBUG
werror(sprintf("parse_pem: '%s'\n", f));
#endif
#if 0
if(!f)
{
werror("PEM: No certificate found.\n");
return 0;
}
#endif
array(string) lines = f / "\n";
string name = 0;
int start_line;
mapping(string:string) parts = ([ ]);
for(int i = 0; i < sizeof(lines); i++)
{
array(string) res;
if (res = begin_pem->split(lines[i]))
{
#ifdef PEM_DEBUG
werror(sprintf("Matched start of '%s'\n", res[0]));
#endif
if (name) /* Bad syntax */
return 0;
name = res[0];
start_line = i + 1;
}
else if (res = end_pem->split(lines[i]))
{
#ifdef PEM_DEBUG
werror(sprintf("Matched end of '%s'\n", res[0]));
#endif
if (name != res[0]) /* Bad syntax */
return 0;
parts[name] = MIME.decode_base64(lines[start_line .. i - 1] * "");
name = 0;
}
}
if (name) /* Bad syntax */
return 0;
#ifdef PEM_DEBUG
werror(sprintf("pem contents: %O\n", parts));
#endif
return parts;
}
string build_pem(string tag, string data)
{
return sprintf("-----BEGIN %s-----\n\n"
"%s\n"
"-----END %s-----\n",
tag, MIME.encode_base64(data), tag);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment