16 lines
248 B
PHP
16 lines
248 B
PHP
<?php
|
|
|
|
namespace Leenooks\OpenPGP\SignaturePacket;
|
|
|
|
/**
|
|
* @see http://tools.ietf.org/html/rfc4880#section-5.2.3.18
|
|
*/
|
|
class PreferredKeyServerPacket extends Subpacket
|
|
{
|
|
protected $tag = 24;
|
|
|
|
function read()
|
|
{
|
|
$this->data = $this->input;
|
|
}
|
|
} |