crt-sh

Crates.iocrt-sh
lib.rscrt-sh
version0.1.3
sourcesrc
created_at2022-02-11 03:21:38.407518
updated_at2022-02-28 16:54:18.138466
descriptionA simple rust wrapper around crt.sh
homepage
repositoryhttps://github.com/sintemal/crt-sh.git
max_upload_size
id530576
size42,904
sintemal (sintemal)

documentation

https://docs.rs/crt-sh

README

crt-sh

A simple rust wrapper around crt.sh.

Usage

Get the certificate overview for a domain:

let certs: Vec<CrtShEntry> = get_entries("example.com").await.unwrap();

Get a specific certificate (identified by the previous returned crt.sh ID)

let cert: pem::Pem = get_certificate(5813209289).await.unwrap();
Commit count: 11

cargo fmt