8 lines
240 B
PHP
8 lines
240 B
PHP
|
<?php
|
||
|
|
||
|
if (!is_callable("gnupg_init")) {
|
||
|
fprintf(STDERR, "Error: The PHP GnuPG extension is not installed.\n\n");
|
||
|
fprintf(STDERR," * Debian/Ubuntu: Resolve with 'sudo apt-get install php5-gnupg' (or 'php7-gnupg')\n");
|
||
|
die();
|
||
|
}
|