(self)
| 121 | |
| 122 | @property |
| 123 | def payload(self) -> bytes: |
| 124 | wbuf = WriteBuf() |
| 125 | self.write(wbuf) |
| 126 | return wbuf.write_flush() |
| 127 | |
| 128 | @classmethod |
| 129 | def parse(cls, payload: bytes) -> 'SSH1_PublicKeyMessage': |
nothing calls this directly
no test coverage detected