Sep 6, 2007 #1 mactonio Programmer Nov 18, 2003 55 US Does anyone have a simple efficient way to calculate the CRC(32 bits) of an ethernet packet. I just dont want to re-invent the wheel. thanks, mactonio
Does anyone have a simple efficient way to calculate the CRC(32 bits) of an ethernet packet. I just dont want to re-invent the wheel. thanks, mactonio
Sep 7, 2007 #2 xwb Programmer Jul 11, 2002 6,828 GB Do a web search for CRC32 or CRC16. It basically uses a lookup table for looking up the byte values. The lookup table depends on your polynomial. Upvote 0 Downvote
Do a web search for CRC32 or CRC16. It basically uses a lookup table for looking up the byte values. The lookup table depends on your polynomial.