diff options
Diffstat (limited to 'views/foaf/foafssl/profile.php')
-rw-r--r-- | views/foaf/foafssl/profile.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/views/foaf/foafssl/profile.php b/views/foaf/foafssl/profile.php deleted file mode 100644 index b11708a32..000000000 --- a/views/foaf/foafssl/profile.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php -$user = $vars['user']; -if ($user) { - $options = array('types'=>'object','subtypes'=>'sslkey','owner_guid'=>$user->getGUID()); - $userkeys = elgg_get_entities($options); - foreach($userkeys as $key) { -?> -<rsa:RSAPublicKey> - <cert:identity rdf:resource="#me"/> - <rsa:public_exponent cert:decimal="<?php echo $key->exponent; ?>"/> - <rsa:modulus cert:hex="<?php echo $key->modulus; ?>"/> -</rsa:RSAPublicKey> -<?php - } -} -?> |