Changeset 31
- Timestamp:
- 11/06/04 13:43:23 (4 years ago)
- Files:
-
- trunk/lib/pgp/packet/sigsubpacket/packet.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/pgp/packet/sigsubpacket/packet.rb
r29 r31 122 122 123 123 def self.scan(port, io) 124 length = load_length_new(port) 124 length, partial = load_length_new(port) 125 if partial 126 raise "Partial Body Lengths not allowed" 127 end 125 128 type = load_type(port) 126 129 critical = (type & T_CRITICAL).nonzero?