Exceptions
6 days ago
apache.php
6 days ago
apcu.php
6 days ago
array.php
6 days ago
bzip2.php
6 days ago
calendar.php
6 days ago
classobj.php
6 days ago
com.php
6 days ago
cubrid.php
6 days ago
curl.php
6 days ago
datetime.php
6 days ago
dir.php
6 days ago
eio.php
6 days ago
errorfunc.php
6 days ago
exec.php
6 days ago
fileinfo.php
6 days ago
filesystem.php
6 days ago
filter.php
6 days ago
fpm.php
6 days ago
ftp.php
6 days ago
funchand.php
6 days ago
functionsList.php
6 days ago
gmp.php
6 days ago
gnupg.php
6 days ago
hash.php
6 days ago
ibase.php
6 days ago
ibmDb2.php
6 days ago
iconv.php
6 days ago
image.php
6 days ago
imap.php
6 days ago
info.php
6 days ago
ingres-ii.php
6 days ago
inotify.php
6 days ago
json.php
6 days ago
ldap.php
6 days ago
libxml.php
6 days ago
lzf.php
6 days ago
mailparse.php
6 days ago
mbstring.php
6 days ago
misc.php
6 days ago
msql.php
6 days ago
mysql.php
6 days ago
mysqli.php
6 days ago
mysqlndMs.php
6 days ago
mysqlndQc.php
6 days ago
network.php
6 days ago
oci8.php
6 days ago
opcache.php
6 days ago
openssl.php
6 days ago
outcontrol.php
6 days ago
password.php
6 days ago
pcntl.php
6 days ago
pcre.php
6 days ago
pdf.php
6 days ago
pgsql.php
6 days ago
posix.php
6 days ago
ps.php
6 days ago
pspell.php
6 days ago
readline.php
6 days ago
rpminfo.php
6 days ago
rrd.php
6 days ago
sem.php
6 days ago
session.php
6 days ago
shmop.php
6 days ago
simplexml.php
6 days ago
sockets.php
6 days ago
sodium.php
6 days ago
solr.php
6 days ago
spl.php
6 days ago
sqlsrv.php
6 days ago
ssdeep.php
6 days ago
ssh2.php
6 days ago
stream.php
6 days ago
strings.php
6 days ago
swoole.php
6 days ago
uodbc.php
6 days ago
uopz.php
6 days ago
url.php
6 days ago
var.php
6 days ago
xdiff.php
6 days ago
xml.php
6 days ago
xmlrpc.php
6 days ago
yaml.php
6 days ago
yaz.php
6 days ago
zip.php
6 days ago
zlib.php
6 days ago
gnupg.php
154 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePressVendor\Safe; |
| 4 | |
| 5 | use ProfilePressVendor\Safe\Exceptions\GnupgException; |
| 6 | /** |
| 7 | * |
| 8 | * |
| 9 | * @param resource $identifier The gnupg identifier, from a call to |
| 10 | * gnupg_init or gnupg. |
| 11 | * @param string $fingerprint The fingerprint key. |
| 12 | * @param string $passphrase The pass phrase. |
| 13 | * @throws GnupgException |
| 14 | * |
| 15 | */ |
| 16 | function gnupg_adddecryptkey($identifier, string $fingerprint, string $passphrase): void |
| 17 | { |
| 18 | error_clear_last(); |
| 19 | $result = \gnupg_adddecryptkey($identifier, $fingerprint, $passphrase); |
| 20 | if ($result === \false) { |
| 21 | throw GnupgException::createFromPhpError(); |
| 22 | } |
| 23 | } |
| 24 | /** |
| 25 | * |
| 26 | * |
| 27 | * @param resource $identifier The gnupg identifier, from a call to |
| 28 | * gnupg_init or gnupg. |
| 29 | * @param string $fingerprint The fingerprint key. |
| 30 | * @throws GnupgException |
| 31 | * |
| 32 | */ |
| 33 | function gnupg_addencryptkey($identifier, string $fingerprint): void |
| 34 | { |
| 35 | error_clear_last(); |
| 36 | $result = \gnupg_addencryptkey($identifier, $fingerprint); |
| 37 | if ($result === \false) { |
| 38 | throw GnupgException::createFromPhpError(); |
| 39 | } |
| 40 | } |
| 41 | /** |
| 42 | * |
| 43 | * |
| 44 | * @param resource $identifier The gnupg identifier, from a call to |
| 45 | * gnupg_init or gnupg. |
| 46 | * @param string $fingerprint The fingerprint key. |
| 47 | * @param string $passphrase The pass phrase. |
| 48 | * @throws GnupgException |
| 49 | * |
| 50 | */ |
| 51 | function gnupg_addsignkey($identifier, string $fingerprint, string $passphrase = null): void |
| 52 | { |
| 53 | error_clear_last(); |
| 54 | if ($passphrase !== null) { |
| 55 | $result = \gnupg_addsignkey($identifier, $fingerprint, $passphrase); |
| 56 | } else { |
| 57 | $result = \gnupg_addsignkey($identifier, $fingerprint); |
| 58 | } |
| 59 | if ($result === \false) { |
| 60 | throw GnupgException::createFromPhpError(); |
| 61 | } |
| 62 | } |
| 63 | /** |
| 64 | * |
| 65 | * |
| 66 | * @param resource $identifier The gnupg identifier, from a call to |
| 67 | * gnupg_init or gnupg. |
| 68 | * @throws GnupgException |
| 69 | * |
| 70 | */ |
| 71 | function gnupg_cleardecryptkeys($identifier): void |
| 72 | { |
| 73 | error_clear_last(); |
| 74 | $result = \gnupg_cleardecryptkeys($identifier); |
| 75 | if ($result === \false) { |
| 76 | throw GnupgException::createFromPhpError(); |
| 77 | } |
| 78 | } |
| 79 | /** |
| 80 | * |
| 81 | * |
| 82 | * @param resource $identifier The gnupg identifier, from a call to |
| 83 | * gnupg_init or gnupg. |
| 84 | * @throws GnupgException |
| 85 | * |
| 86 | */ |
| 87 | function gnupg_clearencryptkeys($identifier): void |
| 88 | { |
| 89 | error_clear_last(); |
| 90 | $result = \gnupg_clearencryptkeys($identifier); |
| 91 | if ($result === \false) { |
| 92 | throw GnupgException::createFromPhpError(); |
| 93 | } |
| 94 | } |
| 95 | /** |
| 96 | * |
| 97 | * |
| 98 | * @param resource $identifier The gnupg identifier, from a call to |
| 99 | * gnupg_init or gnupg. |
| 100 | * @throws GnupgException |
| 101 | * |
| 102 | */ |
| 103 | function gnupg_clearsignkeys($identifier): void |
| 104 | { |
| 105 | error_clear_last(); |
| 106 | $result = \gnupg_clearsignkeys($identifier); |
| 107 | if ($result === \false) { |
| 108 | throw GnupgException::createFromPhpError(); |
| 109 | } |
| 110 | } |
| 111 | /** |
| 112 | * Toggle the armored output. |
| 113 | * |
| 114 | * @param resource $identifier The gnupg identifier, from a call to |
| 115 | * gnupg_init or gnupg. |
| 116 | * @param int $armor Pass a non-zero integer-value to this function to enable armored-output |
| 117 | * (default). |
| 118 | * Pass 0 to disable armored output. |
| 119 | * @throws GnupgException |
| 120 | * |
| 121 | */ |
| 122 | function gnupg_setarmor($identifier, int $armor): void |
| 123 | { |
| 124 | error_clear_last(); |
| 125 | $result = \gnupg_setarmor($identifier, $armor); |
| 126 | if ($result === \false) { |
| 127 | throw GnupgException::createFromPhpError(); |
| 128 | } |
| 129 | } |
| 130 | /** |
| 131 | * Sets the mode for signing. |
| 132 | * |
| 133 | * @param resource $identifier The gnupg identifier, from a call to |
| 134 | * gnupg_init or gnupg. |
| 135 | * @param int $signmode The mode for signing. |
| 136 | * |
| 137 | * signmode takes a constant indicating what type of |
| 138 | * signature should be produced. The possible values are |
| 139 | * GNUPG_SIG_MODE_NORMAL, |
| 140 | * GNUPG_SIG_MODE_DETACH and |
| 141 | * GNUPG_SIG_MODE_CLEAR. |
| 142 | * By default GNUPG_SIG_MODE_CLEAR is used. |
| 143 | * @throws GnupgException |
| 144 | * |
| 145 | */ |
| 146 | function gnupg_setsignmode($identifier, int $signmode): void |
| 147 | { |
| 148 | error_clear_last(); |
| 149 | $result = \gnupg_setsignmode($identifier, $signmode); |
| 150 | if ($result === \false) { |
| 151 | throw GnupgException::createFromPhpError(); |
| 152 | } |
| 153 | } |
| 154 |