31 lines
459 B
PHP
31 lines
459 B
PHP
<?php
|
|
|
|
namespace Leenooks\OpenPGP\SignaturePacket;
|
|
|
|
/**
|
|
* @see http://tools.ietf.org/html/rfc4880#section-5.2.3.7
|
|
*/
|
|
class PreferredSymmetricAlgorithmsPacket extends Subpacket
|
|
{
|
|
protected $tag = 11;
|
|
|
|
function body()
|
|
{
|
|
$bytes = '';
|
|
|
|
foreach($this->data as $algo) {
|
|
$bytes .= chr($algo);
|
|
}
|
|
|
|
return $bytes;
|
|
}
|
|
|
|
function read()
|
|
{
|
|
$this->data = array();
|
|
|
|
while(strlen($this->input) > 0) {
|
|
$this->data[] = ord($this->read_byte());
|
|
}
|
|
}
|
|
} |