Crates.io | crt-sh |
lib.rs | crt-sh |
version | 0.1.3 |
source | src |
created_at | 2022-02-11 03:21:38.407518 |
updated_at | 2022-02-28 16:54:18.138466 |
description | A simple rust wrapper around crt.sh |
homepage | |
repository | https://github.com/sintemal/crt-sh.git |
max_upload_size | |
id | 530576 |
size | 42,904 |
A simple rust wrapper around crt.sh.
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();