Python's method for CRC32 value _python

Source: Internet
Author: User
Tags crc32

The example in this article describes Python's method for finding CRC32 values. Share to everyone for your reference. The implementation methods are as follows:

To ask for CRC value, import BINASCII before
Binascii.crc32 (v) The CRC32 value of V is obtained, which is a long shape, like -1456387l, which &0xffffffff the value of the value as 48a213l form.
And then the value is expressed in 16,

The specific code is as follows:

def _crc32 (self, V): "" " 
  generates the CRC32 hash of the V. 
  @return: str, the STR value for the CRC32 of the V 
  "" return 
  ' 0x%x '% (Binascii.crc32 (v) & 0xFFFFFFFF) #取crc3 2 of eight-bit data%x returns 16

I hope this article will help you with your Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.