openpgp-php/lib/OpenPgP/SignaturePacket/SignersUserIDPacket.php
2020-06-24 22:37:14 +10:00

16 lines
243 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 read()
{
$this->data = $this->input;
}
}