0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00

doc: crypto: document SPKAC additions

Document the SPKAC functionality that was added in commit 7bf46ba.
This commit is contained in:
Jason Gerfen 2013-10-15 08:31:14 -06:00 committed by Trevor Norris
parent 7bf46ba4ce
commit 990141502d

View File

@ -474,6 +474,26 @@ such as in the generation of encryption keys.
Usage is otherwise identical to `crypto.randomBytes`.
## Class: Certificate
The class used for working with signed public key & challenges. The most
common usage for this series of functions is when dealing with the `<keygen>`
element. http://www.openssl.org/docs/apps/spkac.html
Returned by `crypto.Certificate`.
### Certificate.verifySpkac(spkac)
Returns true of false based on the validity of the SPKAC.
### Certificate.exportChallenge(spkac)
Exports the encoded public key from the supplied SPKAC.
### Certificate.exportPublicKey(spkac)
Exports the encoded challenge associated with the SPKAC.
## crypto.DEFAULT_ENCODING
The default encoding to use for functions that can take either strings