只是为了确保你,因为手册中没有提到:当然,即使你的密钥环中有私钥,也只导出公钥。
(PECL gnupg >= 0.1)
gnupg_export — 导出密钥
成功时,此函数返回密钥数据。失败时,此函数返回 false
。
示例 #1 过程式 gnupg_export() 示例
<?php
$res = gnupg_init();
$export = gnupg_export($res,"8660281B6051D071D94B5B230549F9DC851566DC");
echo $export;
?>
示例 #2 OO gnupg_export() 示例
<?php
$gpg = new gnupg();
$export = $gpg->export("8660281B6051D071D94B5B230549F9DC851566DC");
?>