File manager - Edit - /var/www/ratemypay_dev/vendor/thecodingmachine/safe/generated/8.1/gnupg.php
Back
<?php namespace Safe; use Safe\Exceptions\GnupgException; /** * @param resource $identifier * @param string $fingerprint * @param string $passphrase * @throws GnupgException * */ function gnupg_adddecryptkey($identifier, string $fingerprint, string $passphrase): void { error_clear_last(); $safeResult = \gnupg_adddecryptkey($identifier, $fingerprint, $passphrase); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @param string $fingerprint * @throws GnupgException * */ function gnupg_addencryptkey($identifier, string $fingerprint): void { error_clear_last(); $safeResult = \gnupg_addencryptkey($identifier, $fingerprint); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @param string $fingerprint * @param string $passphrase * @throws GnupgException * */ function gnupg_addsignkey($identifier, string $fingerprint, ?string $passphrase = null): void { error_clear_last(); if ($passphrase !== null) { $safeResult = \gnupg_addsignkey($identifier, $fingerprint, $passphrase); } else { $safeResult = \gnupg_addsignkey($identifier, $fingerprint); } if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @throws GnupgException * */ function gnupg_cleardecryptkeys($identifier): void { error_clear_last(); $safeResult = \gnupg_cleardecryptkeys($identifier); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @throws GnupgException * */ function gnupg_clearencryptkeys($identifier): void { error_clear_last(); $safeResult = \gnupg_clearencryptkeys($identifier); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @throws GnupgException * */ function gnupg_clearsignkeys($identifier): void { error_clear_last(); $safeResult = \gnupg_clearsignkeys($identifier); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @param int $armor * @throws GnupgException * */ function gnupg_setarmor($identifier, int $armor): void { error_clear_last(); $safeResult = \gnupg_setarmor($identifier, $armor); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } } /** * @param resource $identifier * @param int $signmode * @throws GnupgException * */ function gnupg_setsignmode($identifier, int $signmode): void { error_clear_last(); $safeResult = \gnupg_setsignmode($identifier, $signmode); if ($safeResult === false) { throw GnupgException::createFromPhpError(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings