Follow-up fix for Bug MDL-8617 "Implement groupings & course modules..." internal...
[moodle-pu.git] / mnet / publickey.php
blob51cff94111174c0e096e94ec8341fefcc9376431
1 <?php
2 /**
3 * Print this server's public key and exit
4 *
5 * @author Donal McMullan donal@catalyst.net.nz
6 * @version 0.0.1
7 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
8 * @package mnet
9 */
11 require_once(dirname(dirname(__FILE__)) . '/config.php');
12 require_once $CFG->dirroot.'/mnet/lib.php';
13 header("Content-type: text/plain");
14 $keypair = mnet_get_keypair();
15 echo $keypair['certificate'];