Remove to_bytes() methods
This commit is contained in:
@@ -23,8 +23,7 @@ class SymmetricSessionKeyPacket extends Packet
|
||||
|
||||
function body()
|
||||
{
|
||||
return chr($this->version) . chr($this->symmetric_algorithm) .
|
||||
$this->s2k->to_bytes() . $this->encrypted_data;
|
||||
return chr($this->version).chr($this->symmetric_algorithm).$this->s2k.$this->encrypted_data;
|
||||
}
|
||||
|
||||
function read()
|
||||
|
Reference in New Issue
Block a user