class OpenPGP::Packet::Trust
Attributes
data[RW]
Public Class Methods
parse_body(body, options = {})
click to toggle source
# File lib/openpgp/packet.rb, line 409 def self.parse_body(body, options = {}) self.new({:data => body.read}.merge(options)) end
Public Instance Methods
write_body(buffer)
click to toggle source
# File lib/openpgp/packet.rb, line 413 def write_body(buffer) buffer.write(data) end