Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remram44/adler32-rs
Minimal Adler32 implementation for Rust.
https://github.com/remram44/adler32-rs
adler-32 hash hashing rolling-hash-functions rust
Last synced: 13 days ago
JSON representation
Minimal Adler32 implementation for Rust.
- Host: GitHub
- URL: https://github.com/remram44/adler32-rs
- Owner: remram44
- License: other
- Created: 2017-01-11T03:56:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T13:39:51.000Z (about 3 years ago)
- Last Synced: 2024-10-25T06:26:29.041Z (19 days ago)
- Topics: adler-32, hash, hashing, rolling-hash-functions, rust
- Language: Rust
- Size: 56.6 KB
- Stars: 20
- Watchers: 4
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://github.com/remram44/adler32-rs/workflows/Test/badge.svg)](https://github.com/remram44/adler32-rs/actions)
[![Crates.io](https://img.shields.io/crates/v/adler32.svg)](https://crates.io/crates/adler32)
[![Documentation](https://docs.rs/adler32/badge.svg)](https://docs.rs/adler32)
[![License](https://img.shields.io/crates/l/adler32.svg)](https://github.com/remram44/adler32-rs/blob/master/LICENSE)What is this?
=============It is an implementation of the [Adler32 rolling hash algorithm](https://en.wikipedia.org/wiki/Adler-32) in the [Rust programming language](https://www.rust-lang.org/).
It is adapted from Jean-Loup Gailly's and Mark Adler's [original implementation in zlib](https://github.com/madler/zlib/blob/2fa463bacfff79181df1a5270fb67cc679a53e71/adler32.c).
#### Minimum Supported Version of Rust (MSRV)
`adler32-rs` can be built with Rust version 1.33 or later. This version may be raised in the future but that will be accompanied by a minor version increase.