Question CRC8 Function

Mr.Paul

New member
Joined
Mar 12, 2014
Messages
1
Programming Experience
5-10
Hello,

I have to create in VB.NET a function that calculates the CRC-8 with the polynomial X ^ 8 + X ^ 6 + X ^ 4 + X ^ 2 +1 from an input string.
We can call this function CalculateCRC.

I would have this:

Dim inputString as String = "inputValues"
Dim outputString as String = CalculateCRC(inputString)

Can someone help me?

Thank you really much
 
Back
Top