Both kinds of EncryptedDataPacket

This commit is contained in:
Stephen Paul Weber 2013-01-21 15:33:46 -05:00
parent dffa0ecaa2
commit 68b2047508

View File

@ -1562,7 +1562,13 @@ class OpenPGP_CompressedDataPacket extends OpenPGP_Packet implements IteratorAgg
* @see http://tools.ietf.org/html/rfc4880#section-5.7 * @see http://tools.ietf.org/html/rfc4880#section-5.7
*/ */
class OpenPGP_EncryptedDataPacket extends OpenPGP_Packet { class OpenPGP_EncryptedDataPacket extends OpenPGP_Packet {
// TODO function read() {
$this->data = $this->input;
}
function body() {
return $this->data;
}
} }
/** /**
@ -1705,8 +1711,17 @@ class OpenPGP_UserAttributePacket extends OpenPGP_Packet {
* *
* @see http://tools.ietf.org/html/rfc4880#section-5.13 * @see http://tools.ietf.org/html/rfc4880#section-5.13
*/ */
class OpenPGP_IntegrityProtectedDataPacket extends OpenPGP_Packet { class OpenPGP_IntegrityProtectedDataPacket extends OpenPGP_EncryptedDataPacket {
// TODO public $version;
function read() {
$this->version = ord($this->read_byte());
$this->data = $this->input;
}
function body() {
return chr($this->version) . $this->data;
}
} }
/** /**