index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2019-09-02 15:04:29 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-09-02 15:04:29 +0200 |
commit | 474c67778253ee71eb07e4f24e64d55839024573 (patch) | |
tree | 98624899abcf101ae95628ab29c4e3216d62b749 /keys.php | |
parent | 20fc32355be51db17e2da216dee7bca6889fe96d (diff) |
-rw-r--r-- | keys.php | 17 |
diff --git a/keys.php b/keys.php new file mode 100644 index 0000000..b5e6f8f --- /dev/null +++ b/keys.php @@ -0,0 +1,17 @@ +<?php + +require_once "init.php"; + +if (array_key_exists('k', $_GET) +&& (preg_match('/^[0-9A-Fa-f]{40}$/', $_GET['k']) !== false)) + $output = shell_exec('gpg -a --export ' . $_GET['k']); + print $output; + if (empty($output)) { + $fh = fopen('key-wishlist', 'a'); + if ($fh !== false) { + fwrite($fh, $_GET['k'] . "\n"); + fclose($fh); + } + } +else + print shell_exec('gpg --list-keys --with-colons'); |