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

21 lines
319 B
PHP

<?php
namespace Leenooks\OpenPGP\SignaturePacket;
/**
* @see http://tools.ietf.org/html/rfc4880#section-5.2.3.6
*/
class SignatureExpirationTimePacket extends Subpacket
{
protected $tag = 3;
function body()
{
return pack('N', $this->data);
}
function read()
{
$this->data = $this->read_timestamp();
}
}