Create the default version of the payload layer :return: a string of payload layer
(self)
| 746 | return p |
| 747 | |
| 748 | def do_build_payload(self): |
| 749 | # type: () -> bytes |
| 750 | """ |
| 751 | Create the default version of the payload layer |
| 752 | |
| 753 | :return: a string of payload layer |
| 754 | """ |
| 755 | return self.payload.do_build() |
| 756 | |
| 757 | def do_build(self): |
| 758 | # type: () -> bytes |