CFXXL v0.1.0 CFXXL View Source
A module containing functions to interact with the CFSSL API.
For more information on the contents of the results of each call, see the relative cfssl API documentation
Link to this section Summary
Functions
Request to sign a CSR with authentication
Request a certificate bundle
Request information about a certificate
Generate a CRL from the database
Perform a generic GET to the CFSSL API
Get signer information
Request a new CA key/certificate pair
Request a new key/signed certificate pair
Request a new key/CSR pair
Perform a generic POST to the CFSSL API
Request to revoke a certificate
Scan an host
Get information on scan families
Request to sign a CSR
Link to this section Functions
Request to sign a CSR with authentication.
Arguments
client
: theCFXXL.Client
to use for the calltoken
: the authentication tokencsr
: the CSR as a PEM encoded stringopts
: a keyword list of optional parameters
Options
timestamp
: a Unix timestampremote_address
: an address used in making the requestbundle
: a boolean specifying whether to include an “optimal” certificate bundle along with the certificate- all the opts supported in
sign/3
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request a certificate bundle
Arguments
client
: theCFXXL.Client
to use for the callopts
: a keyword list of parameters
Options
opts
must contain one of these two keys
certificate
: the PEM-encoded certificate to be bundleddomain
: a domain name indicating a remote host to retrieve a certificate for
If certificate
is given, the following options are available:
private_key
: the PEM-encoded private key to be included with the bundle. This is valid only if the server is not running in “keyless” modeflavor
: one of:ubiquitous
,:force
, or:optimal
, with a default value of:ubiquitous
. A ubiquitous bundle is one that has a higher probability of being verified everywhere, even by clients using outdated or unusual trust stores. Force will cause the endpoint to use the bundle provided in thecertificate
parameter, and will only verify that the bundle is a valid (verifiable) chaindomain
: the domain name to verify as the hostname of the certificateip
: the IP address to verify against the certificate IP SANs
Otherwise, using domain
, the following options are available:
ip
: the IP address of the remote host; this will fetch the certificate from the IP, and verify that it is valid for the domain name
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request information about a certificate
Arguments
client
: theCFXXL.Client
to use for the callopts
: a keyword list of parameters
Options
opts
must contain one of these two keys
certificate
: the PEM-encoded certificate to be parseddomain
: a domain name indicating a remote host to retrieve a certificate for
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Generate a CRL from the database
Arguments
client
: theCFXXL.Client
to use for the callexpiry
: an optional string to specify the time after which the CRL should expire from the moment of the request
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Perform a generic GET to the CFSSL API.
Arguments
client
: theCFXXL.Client
to use for the callroute
: the part to be appended to the url to make the call, without a leading slashparams
: a map with the parameters to be appended to the URL of the GET
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Get signer information
Arguments
client
: theCFXXL.Client
to use for the calllabel
: a string specifying the signeropts
: a keyword list of optional parameters
Options
profile
: a string specifying the signing profile for the signer. Signing profile specifies what key usages should be used and how long the expiry should be set
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request a new CA key/certificate pair.
Arguments
client
: theCFXXL.Client
to use for the callhosts
: a list of strings representing SAN (subject alternative names) for the CA certificatedname
: aCFXXL.DName
struct representing the DN for the CA certificateopts
: a keyword list of optional parameters
Options
CN
: a string representing the CN for the certificatekey
: aCFXXL.KeyConfig
to configure the key, default to ECDSA-256ca
: aCFXXL.CAConfig
to configure the CA
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request a new key/signed certificate pair.
Arguments
client
: theCFXXL.Client
to use for the callhosts
: a list of strings representing SAN (subject alternative names) for the certificatedname
: aCFXXL.DName
struct representing the DN for the certificateopts
: a keyword list of optional parameters
Options
label
: a string specifying which signer to be appointed to sign the CSR, useful when interacting with a remote multi-root CA signerprofile
: a string specifying the signing profile for the signer, useful when interacting with a remote multi-root CA signerbundle
: a boolean specifying whether to include an “optimal” certificate bundle along with the certificate- all the opts supported in
newkey/4
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request a new key/CSR pair.
Arguments
client
: theCFXXL.Client
to use for the callhosts
: a list of strings representing SAN (subject alternative names) for the certificatedname
: aCFXXL.DName
struct representing the DN for the certificateopts
: a keyword list of optional parameters
Options
CN
: a string representing the CN for the certificatekey
: aCFXXL.KeyConfig
to configure the key, default to ECDSA-256
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Perform a generic POST to the CFSSL API.
Arguments
client
: theCFXXL.Client
to use for the callroute
: the part to be appended to the url to make the call, without a leading slashbody
: a map that will be serialized to JSON and used as the body of the request
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request to revoke a certificate.
Arguments
client
: theCFXXL.Client
to use for the callserial
: the serial of the certificate to be revokedaki
: the AuthorityKeyIdentifier of the certificate to be revokedreason
: a string representing the reason of the revocation, see ReasonFlags in Section 4.2.1.13 of RFC5280
Return
:ok
on success{:error, reason}
if it fails
Scan an host
Arguments
client
: theCFXXL.Client
to use for the callhost
: the hostname (optionally including port) to scanopts
: a keyword list of optional parameters
Options
ip
: IP Address to override DNS lookup of hosttimeout
: The amount of time allotted for the scan to complete (default: 1 minute)family
: regular expression specifying scan famil(ies) to runscanner
: regular expression specifying scanner(s) to run
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Get information on scan families
Arguments
client
: theCFXXL.Client
to use for the call
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails
Request to sign a CSR.
Arguments
client
: theCFXXL.Client
to use for the callcsr
: the CSR as a PEM encoded stringopts
: a keyword list of optional parameters
Options
hosts
: a list of strings representing SAN (subject alternative names) which overrides the ones in the CSRsubject
: aCFXXL.Subject
that overrides the ones in the CSRserial_sequence
: a string specifying the prefix which the generated certificate serial should havelabel
: a string specifying which signer to be appointed to sign the CSR, useful when interacting with a remote multi-root CA signerprofile
: a string specifying the signing profile for the signer, useful when interacting with a remote multi-root CA signerbundle
: a boolean specifying whether to include an “optimal” certificate bundle along with the certificate
Return
{:ok, result}
with the contents of theresult
key of the API{:error, reason}
if it fails