Method |
Description |
|
hasAccountKeyPair ( ) : boolean |
Check if there is an account key pair in the repository. |
|
hasDomainAuthorizationChallenge ( string $domain ) : boolean |
Check if there is an authorization challenge associated to the given domain in the repository. |
|
hasDomainCertificate ( string $domain ) : boolean |
Check if there is a certificate associated to the given domain in the repository. |
|
hasDomainDistinguishedName ( string $domain ) : boolean |
Check if there is a distinguished name associated to the given domain in the repository. |
|
hasDomainKeyPair ( string $domain ) : boolean |
Check if there is a key pair associated to the given domain in the repository. |
|
loadAccountKeyPair ( ) : KeyPair |
Load the account key pair. |
|
loadDomainAuthorizationChallenge ( string $domain ) : AcmePhp\Core\Protocol\AuthorizationChallenge |
Load the authorization challenge associated to a given domain. |
|
loadDomainCertificate ( string $domain ) : Certificate |
Load the certificate associated to a given domain. |
|
loadDomainDistinguishedName ( string $domain ) : DistinguishedName |
Load the distinguished name associated to a given domain. |
|
loadDomainKeyPair ( string $domain ) : KeyPair |
Load the key pair associated to a given domain. |
|
save ( string $path, string $content, string $visibility = self::VISIBILITY_PRIVATE ) |
Save a given string into a given path handling backup. |
|
storeAccountKeyPair ( KeyPair $keyPair ) : void |
Store a given key pair as the account key pair (the global key pair used to
interact with the ACME server). |
|
storeCertificateResponse ( CertificateResponse $certificateResponse ) : void |
Extract important elements from the given certificate response and store them
in the repository. |
|
storeDomainAuthorizationChallenge ( string $domain, AcmePhp\Core\Protocol\AuthorizationChallenge $authorizationChallenge ) : void |
Store a given authorization challenge as associated to a given domain. |
|
storeDomainCertificate ( string $domain, Certificate $certificate ) : void |
Store a given certificate as associated to a given domain. |
|
storeDomainDistinguishedName ( string $domain, DistinguishedName $distinguishedName ) : void |
Store a given distinguished name as associated to a given domain. |
|
storeDomainKeyPair ( string $domain, KeyPair $keyPair ) : void |
Store a given key pair as associated to a given domain. |
|