cleanup
This commit is contained in:
parent
5b254d7fd9
commit
dfbb24beb3
20
README.md
20
README.md
|
@ -94,6 +94,8 @@ but also provides an updated API more congruent with draft 11.
|
||||||
|
|
||||||
Status: Stable, Locked, Bugfix-only
|
Status: Stable, Locked, Bugfix-only
|
||||||
|
|
||||||
|
See Full Documentation at <https://git.coolaj86.com/coolaj86/le-acme-core.js>
|
||||||
|
|
||||||
```
|
```
|
||||||
var RSA = require('rsa-compat').RSA;
|
var RSA = require('rsa-compat').RSA;
|
||||||
var acme = require('acme-v2/compat.js').ACME.create({ RSA: RSA });
|
var acme = require('acme-v2/compat.js').ACME.create({ RSA: RSA });
|
||||||
|
@ -103,16 +105,15 @@ var acme = require('acme-v2/compat.js').ACME.create({ RSA: RSA });
|
||||||
//
|
//
|
||||||
```
|
```
|
||||||
|
|
||||||
See documentation at <https://git.coolaj86.com/coolaj86/le-acme-core.js>
|
## Promise API (dev)
|
||||||
|
|
||||||
## draft API (dev)
|
Status: Almost stable, but **not semver locked**
|
||||||
|
|
||||||
Status: Almost stable, not locked
|
|
||||||
|
|
||||||
This API is a simple evolution of le-acme-core,
|
This API is a simple evolution of le-acme-core,
|
||||||
but tries to provide a better mapping to the new draft 11 APIs.
|
but tries to provide a better mapping to the new draft 11 APIs.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
// Create Instance (Dependency Injection)
|
||||||
var ACME = require('acme-v2').ACME.create({
|
var ACME = require('acme-v2').ACME.create({
|
||||||
RSA: require('rsa-compat').RSA
|
RSA: require('rsa-compat').RSA
|
||||||
|
|
||||||
|
@ -131,9 +132,12 @@ var ACME = require('acme-v2').ACME.create({
|
||||||
// don't try to validate challenges locally
|
// don't try to validate challenges locally
|
||||||
, skipChallengeTest: false
|
, skipChallengeTest: false
|
||||||
});
|
});
|
||||||
```
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
|
// Discover Directory URLs
|
||||||
|
ACME.init(acmeDirectoryUrl) // returns Promise<acmeUrls={keyChange,meta,newAccount,newNonce,newOrder,revokeCert}>
|
||||||
|
|
||||||
|
|
||||||
// Accounts
|
// Accounts
|
||||||
ACME.accounts.create(options) // returns Promise<regr> registration data
|
ACME.accounts.create(options) // returns Promise<regr> registration data
|
||||||
|
|
||||||
|
@ -162,10 +166,6 @@ ACME.certificates.create(options) // returns Promise<pems={ privkey
|
||||||
, setChallenge: fn (hostname, key, val) // return Promise
|
, setChallenge: fn (hostname, key, val) // return Promise
|
||||||
, removeChallenge: fn (hostname, key) // return Promise
|
, removeChallenge: fn (hostname, key) // return Promise
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Discovery URLs
|
|
||||||
ACME.init(acmeDirectoryUrl) // returns Promise<acmeUrls={keyChange,meta,newAccount,newNonce,newOrder,revokeCert}>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Helpers & Stuff
|
Helpers & Stuff
|
||||||
|
|
Loading…
Reference in New Issue