Multiple accounts
Closed this issue · 2 comments
This is a good library and provides excellent abstraction for development work.
I needed several trials to get through a full validation cycle, but that may be my own limitation.
I am creating an app which utilises this library, and want to include functionality for multiple Let's Encrypt accounts.
Currently, I believe the single-account functionality leads to the same key pair being used for all $email
s specified in the class initiation and account functions
Is there a way to store multiple accounts keys? Probably based on email address? Like...
user-domain-tld_privkey.pkcs8.pem
user-domain-tld_pubkey.pem
I guess the ability to specify an account key will suffice
This functionality is built into the client constructor at
Line 67 in a9ce9f2
Fourth and fifth arguments are for the certificate keys and for the account keys respectively
The constructor checks if the certificate keys argument is an array at
Line 104 in a9ce9f2
* `certificate`
* `private_key`
* `order`
* `public_key`
Similarly it checks if the account keys argument is an array at
Line 138 in a9ce9f2
* `private_key`
* `public_key`
This allows significant flexibility as my app can have multiple accounts and specify which account to query.