diff options
author | Friendika <info@friendika.com> | 2011-07-30 01:03:24 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-30 01:03:24 -0700 |
commit | 60caffcd7776043ee89e5939b81d7bd9d948cd4e (patch) | |
tree | 14765e1b7994bdd2682a301bbfa384259d225a8d /mod | |
parent | 01703f3be6fae07d9fbb24f1b57b8c181cb59df9 (diff) | |
download | volse-hubzilla-60caffcd7776043ee89e5939b81d7bd9d948cd4e.tar.gz volse-hubzilla-60caffcd7776043ee89e5939b81d7bd9d948cd4e.tar.bz2 volse-hubzilla-60caffcd7776043ee89e5939b81d7bd9d948cd4e.zip |
convert our native pkcs#8 to pkcs#1 for diaspora-public-key xrd field
Diffstat (limited to 'mod')
-rw-r--r-- | mod/xrd.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/xrd.php b/mod/xrd.php index accc2f68e..4889639f0 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -1,6 +1,7 @@ <?php require_once('salmon.php'); +require_once('certfns.php'); function xrd_content(&$a) { @@ -34,7 +35,7 @@ function xrd_content(&$a) { $dspr = replace_macros($tpl,array( '$baseurl' => $a->get_baseurl(), '$dspr_guid' => $r[0]['guid'], - '$dspr_key' => base64_encode($r[0]['pubkey']) + '$dspr_key' => base64_encode(pemtorsa($r[0]['pubkey'])) )); } else |