17 lines
396 B
PHP
17 lines
396 B
PHP
|
<?php
|
||
|
|
||
|
namespace Leenooks\OpenPGP;
|
||
|
|
||
|
/**
|
||
|
* OpenPGP Secret-Subkey packet (tag 7).
|
||
|
*
|
||
|
* @see http://tools.ietf.org/html/rfc4880#section-5.5.1.4
|
||
|
* @see http://tools.ietf.org/html/rfc4880#section-5.5.3
|
||
|
* @see http://tools.ietf.org/html/rfc4880#section-11.2
|
||
|
* @see http://tools.ietf.org/html/rfc4880#section-12
|
||
|
*/
|
||
|
class SecretSubkeyPacket extends SecretKeyPacket
|
||
|
{
|
||
|
// TODO
|
||
|
protected $tag = 7;
|
||
|
}
|