PHP.nl

gnupg_import

gnupg_import

Imports a key

 **gnupg_import** resource $identifier string $keydata

Imports the key and returns an array with information about the importprocess. keydata

identifier``keydataThe data key that is being imported.

On success, this function returns and info-array about the importprocess. On failure, this function returns false.

Voorbeeld: Procedural example

<?php
$res = gnupg_init();
$info = gnupg_import($res,$keydata);
print_r($info);
?>

Voorbeeld: OO example

<?php
$gpg = new gnupg();
$info = $gpg->import($keydata);
print_r($info);
?>