Warning: file_put_contents(): Only -1 of 57 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
gnupg_addencryptkey gnupg_cleardecryptkeys gnupg PHP Manual gnupg_addsignkey (PECL gnupg:0.5-1.3.1) — Add a key for signing Description bool ( resource $identifier , string $fingerprint [, $passp...
Forum und email

gnupg_addsignkey

(PECL gnupg:0.5-1.3.1)

gnupg_addsignkey — Add a key for signing

Description

bool gnupg_addsignkey ( resource $identifier , string $fingerprint [, string $passphrase ] )

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example#1 Procedural gnupg_addsignkey() example

<?php
$res 
= gnupg_init();
gnupg_addsignkey($res,"8660281B6051D071D94B5B230549F9DC851566DC","test");
?>

Example#2 OO gnupg_addsignkey() example

<?php
$gpg 
= new gnupg();
$gpg -> addsignkey("8660281B6051D071D94B5B230549F9DC851566DC","test");
?>