We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4420265 + cbcfb8a commit 03c54a9Copy full SHA for 03c54a9
docs/library/binascii.rst
@@ -36,3 +36,9 @@ Functions
36
Encode binary data in base64 format, as in `RFC 3548
37
<https://tools.ietf.org/html/rfc3548.html>`_. Returns the encoded data
38
followed by a newline character, as a bytes object.
39
+
40
+.. function:: crc32(data, value=0, /)
41
42
+ Compute CRC-32, the 32-bit checksum of the bytes in *data* starting with an
43
+ initial CRC of *value*. The default initial CRC is 0. The algorithm is
44
+ consistent with the ZIP file checksum.
0 commit comments