Excrc32c (excrc32c v0.1.0)

View Source

A pure Elixir implementation of the CRC32C algorithm.

Usage

iex> Excrc32c.crc32c("123456789")
3808858755
iex> Excrc32c.crc32c("DYB|O")
0

Summary

Functions

Calculates the CRC32C of the binary.

Functions

crc32c(data)

@spec crc32c(binary()) :: non_neg_integer()

Calculates the CRC32C of the binary.