openpgp-php/lib/OpenPgP/SignaturePacket/SignersUserIDPacket.php
2020-06-17 22:44:51 +10:00

21 lines
289 B
PHP

<?php
namespace Leenooks\OpenPGP\SignaturePacket;
/**
* @see http://tools.ietf.org/html/rfc4880#section-5.2.3.22
*/
class SignersUserIDPacket extends Subpacket
{
protected $tag = 28;
function body()
{
return $this->data;
}
function read()
{
$this->data = $this->input;
}
}