leshow / dns-stamp-parser

Rust libary to encode and decode DNS stamps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dns-stamp-parser

A library to encode and decode DNS stamp. Build status Dependency status Code coverage Latest version License

Usage

Add this to your Cargo.toml:

[dependencies]
dns-stamp-parser = "~3.0.0"

Example

use dns_stamp_parser::DnsStamp;

fn example() {
    let stamp = "sdns://AgcAAAAAAAAADTIxNy4xNjkuMjAuMjIgPhoaD2xT8-l6SS1XCEtbmAcFnuBXqxUFh2_YP9o9uDgNZG5zLmFhLm5ldC51awovZG5zLXF1ZXJ5";
    let dns_stamp = DnsStamp::decode(stamp).unwrap();
    println!("{}", dns_stamp.encode().unwrap());
}

About

Rust libary to encode and decode DNS stamps

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Rust 100.0%