mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
23 lines
492 B
Lua
23 lines
492 B
Lua
local ANSIX923Padding = function(blockSize, byteCount)
|
|
|
|
local paddingCount = blockSize - (byteCount % blockSize);
|
|
local bytesLeft = paddingCount;
|
|
|
|
local stream = function()
|
|
if bytesLeft > 1 then
|
|
bytesLeft = bytesLeft - 1;
|
|
return 0x00;
|
|
elseif bytesLeft > 0 then
|
|
bytesLeft = bytesLeft - 1;
|
|
return paddingCount;
|
|
else
|
|
return nil;
|
|
end
|
|
end
|
|
|
|
return stream;
|
|
|
|
end
|
|
|
|
return ANSIX923Padding;
|