mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 22:37:10 +00:00
9 lines
180 B
PHP
9 lines
180 B
PHP
|
<?php
|
||
|
require_once (dirname(__FILE__)."/main.php");
|
||
|
|
||
|
$iterator = new gnupg_keylistiterator("php.net");
|
||
|
foreach($iterator as $key => $value){
|
||
|
echo $key." -> ".$value."\n";
|
||
|
}
|
||
|
?>
|