cc-mek-scada/lockbox/padding/zero.lua

20 lines
387 B
Lua
Raw Normal View History

2022-05-29 19:05:57 +00:00
local ZeroPadding = function(blockSize, byteCount)
local paddingCount = blockSize - ((byteCount -1) % blockSize) + 1;
local bytesLeft = paddingCount;
local stream = function()
if bytesLeft > 0 then
bytesLeft = bytesLeft - 1;
return 0x00;
else
return nil;
end
end
return stream;
end
return ZeroPadding;