11 lines
195 B
PHP
11 lines
195 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* OpenPGP Private or Experimental packet (tags 60..63).
|
||
|
*
|
||
|
* @see http://tools.ietf.org/html/rfc4880#section-4.3
|
||
|
*/
|
||
|
class ExperimentalPacket extends Packet
|
||
|
{
|
||
|
protected $tag = 60;
|
||
|
}
|