crt-sh 0.1.3

A simple rust wrapper around crt.sh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# crt-sh

A simple rust wrapper around [crt.sh](https://crt.sh).

## Usage

Get the certificate overview for a domain:

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

Get a specific certificate (identified by the previous returned crt.sh ID)
```rs 
let cert: pem::Pem = get_certificate(5813209289).await.unwrap();
```