openpgp-php/lib/OpenPgP/SignaturePacket/SignersUserIDPacket.php

16 lines
243 B
PHP
Raw Permalink Normal View History

2020-06-07 06:25:59 +00:00
<?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;
}
}