(self)
| 108 | |
| 109 | @property |
| 110 | def payload(self) -> bytes: |
| 111 | wbuf = WriteBuf() |
| 112 | self.write(wbuf) |
| 113 | return wbuf.write_flush() |
| 114 | |
| 115 | @classmethod |
| 116 | def parse(cls, outputbuffer: 'OutputBuffer', payload: bytes) -> 'SSH2_Kex': |
nothing calls this directly
no test coverage detected