Implement OnePassSignaturePacket

This commit is contained in:
Stephen Paul Weber 2010-03-30 13:12:18 -05:00
parent e3f332c6ca
commit f09335de1d
1 changed files with 11 additions and 1 deletions

View File

@ -354,7 +354,17 @@ class OpenPGP_SymmetricSessionKeyPacket extends OpenPGP_Packet {
* @see http://tools.ietf.org/html/rfc4880#section-5.4
*/
class OpenPGP_OnePassSignaturePacket extends OpenPGP_Packet {
// TODO
public $version, $signature_type, $hash_algorithm, $key_algorithm, $key_id, $nested;
function read() {
$this->version = ord($this->read_byte());
$this->signature_type = ord($this->read_byte());
$this->hash_algorithm = ord($this->read_byte());
$this->key_algorithm = ord($this->read_byte());
for($i = 0; $i < 8; $i++) { // Store KeyID in Hex
$this->key_id .= dechex(ord($this->read_byte()));
}
$this->nested = ord($this->read_byte());
}
}
/**