(self, packet)
| 238 | return sum(len(sp) for sp in self._unhashed_sp.values()) |
| 239 | |
| 240 | def parse(self, packet): |
| 241 | # parse just one packet and add it to the unhashed subpacket ordereddict |
| 242 | # I actually have yet to come across a User Attribute packet with more than one subpacket |
| 243 | # which makes sense, given that there is only one defined subpacket |
| 244 | sp = UserAttribute(packet) |
| 245 | self[sp.__class__.__name__] = sp |
| 246 | |
| 247 | |
| 248 | class Signature(MPIs): |
nothing calls this directly
no test coverage detected