If my read of the code is correct, Certstream doesn't verify cryptographic inclusion proofs, and is primarily interested in the names on certificates. In that case, it could use the names tiles to reduce bandwidth and processing costs on both sides.
https://github.com/FiloSottile/sunlight/blob/main/names-tiles.md
Names tiles are gzip'd JSON Lines tiles that correspond to the data/partial tiles, containing entries in a format like
{
"Timestamp": 1753375092043,
"Subject": {
"CommonName": "example.com"
},
"DNS": [
"example.com",
"www.example.com"
]
}
Do you think they would work for Certstream?
If my read of the code is correct, Certstream doesn't verify cryptographic inclusion proofs, and is primarily interested in the names on certificates. In that case, it could use the names tiles to reduce bandwidth and processing costs on both sides.
https://github.com/FiloSottile/sunlight/blob/main/names-tiles.md
Names tiles are gzip'd JSON Lines tiles that correspond to the data/partial tiles, containing entries in a format like
Do you think they would work for Certstream?