3 unstable releases

0.2.0 Dec 1, 2023
0.1.1 Jul 8, 2023
0.1.0 Jun 24, 2023

#2264 in Web programming

Download history 1/week @ 2024-02-19 71/week @ 2024-02-26 7/week @ 2024-03-11 57/week @ 2024-04-01

64 downloads per month
Used in yeet-yoink

MIT license

6KB
53 lines

Content-MD5 header support for hyperium/headers

This adds the RFC1864 Content-MD5 header as a typed header:

use headers::Header;
use http::HeaderValue;
use headers_content_md5::ContentMd5;

fn it_works() {
    let value = HeaderValue::from_static("Q2hlY2sgSW50ZWdyaXR5IQ==");
    let md5 = ContentMd5::decode(&mut [&value].into_iter()).unwrap();
    
    let expected = "Check Integrity!".as_bytes().try_into().unwrap();
    assert_eq!(md5, ContentMd5(expected))
}

lib.rs:

Provides the ContentMd5 typed header.

Example

use headers::Header;
use http::HeaderValue;
use headers_content_md5::ContentMd5;

let value = HeaderValue::from_static("Q2hlY2sgSW50ZWdyaXR5IQ==");
let md5 = ContentMd5::decode(&mut [&value].into_iter()).unwrap();
assert_eq!(md5.0, "Check Integrity!".as_bytes())

Dependencies

~1.5MB
~30K SLoC