I have a sequence of 28 bytes that are supposedly encoded by the Reed-Solomon code (28, 24, 5). RS code uses 8-bit characters and works in GF (2 8 ). Field generator polynomial x 8 + x 4 + x 3 + x 2 +1. I am looking for an easy way to decode this sequence, so I can tell if there are errors in this sequence.
I tried the Python module ReedSolomon , but I'm not even sure how to properly configure the codec for my RS code (for example, what is the first consecutive root of a polynomial field generator, what is a primitive element). I also looked at Schifra , but I couldn’t even compile it on my Mac.
I care about the platform (e.g. Python, C, Scilab) if it is free.
error-correction
geschema
source share