If I'm not mistaken the masks used are for the algorithm presuming it's reading the input string backwards?
Was trying to implement this in c and I'm still having trouble. I got curious if the algorithm can be "flipped" the other way around. Instead of reading what I'm assuming is 6 bits from the end, having it read 6 bits from the front. I think this changes the mask from (63 & 62 & 31 & 30) to (63 & 62 & 61 & 60)?
If I'm not mistaken the masks used are for the algorithm presuming it's reading the input string backwards?
Was trying to implement this in c and I'm still having trouble. I got curious if the algorithm can be "flipped" the other way around. Instead of reading what I'm assuming is 6 bits from the end, having it read 6 bits from the front. I think this changes the mask from (63 & 62 & 31 & 30) to (63 & 62 & 61 & 60)?