Hello,
I need help for a Foxpro CRC16 compute for a hexa string like :
A0000101
The CRC16 /Buypass for this string is 06 35
i have 2 examples :
Java implementation
public class CRC {
private static final int CRC_POLYNOM = (int) 0x00008005;
private static final int CRC_MASK = (int) 0x00008000...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.