Case: We want to Encode an 8 Character code to 10 Character code with adding 2 Forward Error Correcting Reed-Solomon Characters(so suffix 2 Error Correcting Chars). Example Code I'm using this Library C# FEC Reed-Solomon Library.
I'm having a problem with Choosing the correct Primitive Polynomial for the Galois Field for 36 Characters.
Can someone help me? The Method were the primitive polynomial is inputted
I have it working for a 32 char code and 64 char code. I now use the primitive polynomial:
55 (decimal value of x^5 + x^4 + x^2 + x + 1) for 32 chars.
67 (decimal value of x^6 + x + 1) for 64 chars
Requirements:
- The 8 char code needs to be the same in the code as the first 8 chars of the encoded code.
- We want a 36 character alphabet (A-Z, 0-9), 37 is also an option.