I'm trying to find an efficient way to calculate the CRC16 polynomial using the base value and the CRC16 output.
An example to be more clear:
y = CRC16(x)
How can I find the polynomial used by CRC16 function to evaluate y?
I'm using C and Python to create some executable (for test purposes).