Server IP : 172.67.216.182 / Your IP : 172.68.164.11 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/lapma.in/phpMyAdmin/vendor/thecodingmachine/safe/generated/ |
Upload File : |
<?php namespace Safe; use Safe\Exceptions\GnupgException; /** * * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @param string $fingerprint The fingerprint key. * @param string $passphrase The pass phrase. * @throws GnupgException * */ function gnupg_adddecryptkey($identifier, string $fingerprint, string $passphrase): void { error_clear_last(); $result = \gnupg_adddecryptkey($identifier, $fingerprint, $passphrase); if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @param string $fingerprint The fingerprint key. * @throws GnupgException * */ function gnupg_addencryptkey($identifier, string $fingerprint): void { error_clear_last(); $result = \gnupg_addencryptkey($identifier, $fingerprint); if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @param string $fingerprint The fingerprint key. * @param string $passphrase The pass phrase. * @throws GnupgException * */ function gnupg_addsignkey($identifier, string $fingerprint, string $passphrase = null): void { error_clear_last(); if ($passphrase !== null) { $result = \gnupg_addsignkey($identifier, $fingerprint, $passphrase); } else { $result = \gnupg_addsignkey($identifier, $fingerprint); } if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @throws GnupgException * */ function gnupg_cleardecryptkeys($identifier): void { error_clear_last(); $result = \gnupg_cleardecryptkeys($identifier); if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @throws GnupgException * */ function gnupg_clearencryptkeys($identifier): void { error_clear_last(); $result = \gnupg_clearencryptkeys($identifier); if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @throws GnupgException * */ function gnupg_clearsignkeys($identifier): void { error_clear_last(); $result = \gnupg_clearsignkeys($identifier); if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * Toggle the armored output. * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @param int $armor Pass a non-zero integer-value to this function to enable armored-output * (default). * Pass 0 to disable armored output. * @throws GnupgException * */ function gnupg_setarmor($identifier, int $armor): void { error_clear_last(); $result = \gnupg_setarmor($identifier, $armor); if ($result === false) { throw GnupgException::createFromPhpError(); } } /** * Sets the mode for signing. * * @param resource $identifier The gnupg identifier, from a call to * gnupg_init or gnupg. * @param int $signmode The mode for signing. * * signmode takes a constant indicating what type of * signature should be produced. The possible values are * GNUPG_SIG_MODE_NORMAL, * GNUPG_SIG_MODE_DETACH and * GNUPG_SIG_MODE_CLEAR. * By default GNUPG_SIG_MODE_CLEAR is used. * @throws GnupgException * */ function gnupg_setsignmode($identifier, int $signmode): void { error_clear_last(); $result = \gnupg_setsignmode($identifier, $signmode); if ($result === false) { throw GnupgException::createFromPhpError(); } }