Description Usage Arguments Value Note
View source: R/cs-list-certs.r
Uses the sslmate Cert Spotter API to list all CT logged certificates for a given domain.
1 2 | cs_list_certs(domain, expired = FALSE, duplicate = FALSE,
sslmate_api_key = Sys.getenv("SSLMATE_API_KEY"))
|
domain |
Return certificates for the given domain and all sub-domains. Also returns matching wildcard certificates. Must be at or below a registered domain. |
expired |
Include expired certificates? For |
duplicate |
Include duplicate certificates? |
sslmate_api_key |
(optional). See |
data frame (tibble) with columns:
type
: (character) cert or precert
dns_names
: (list) DNS identifiers, from both the Subject CN and the DNS SANs
sha256
: (character) The hex-encoded SHA-256 digest of the raw X.509 (pre-)certificate
pubkey_sha256
: (character) The hex-encoded SHA-256 digest of the Subject Public Key Info
issuer
: (character) The distinguished name of the certificate's issuer
not_before
: (character) The not before date, in RFC3339 format (e.g. 2016-06-16T00:00:00-00:00)
not_after
: (character) The not after date, in RFC3339 format (e.g. 2016-06-16T00:00:00-00:00)
logs
: (list) A list of Certificate Transparency logs containing this (pre-)certificate
data
: (character) The raw X.509 (pre-)certificate, encoded in base64
Unauthenticated access to the API may be subject to rate limits.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.