You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Void element is intended largely as padding. As such, it would be useful to be able to specify a total size for the element, not just the size of its payload. For example, a Void with a specified length of 100 would write 0xEB+0xE2+(0xFF * 98). The only trick is calculating the length of the length, but that could be made easier by writing longer lengths than required (e.g. 0x10000062 instead of 0xE2); since this is padding, wasting space isn't really an issue.
The text was updated successfully, but these errors were encountered:
The
Void
element is intended largely as padding. As such, it would be useful to be able to specify a total size for the element, not just the size of its payload. For example, aVoid
with a specified length of 100 would write0xEB
+0xE2
+(0xFF
* 98). The only trick is calculating the length of the length, but that could be made easier by writing longer lengths than required (e.g.0x10000062
instead of0xE2
); since this is padding, wasting space isn't really an issue.The text was updated successfully, but these errors were encountered: