Does anyone know an easy way to generate a checksum for a String on an Android? I have a NMEA sentence I have generated in a String class and it is ready to be sent, but it needs a checksum to be appended.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
http://developer.android.com/reference/java/util/zip/CRC32.html
Standard java way for checksums. I guess this should be useful