Lines Matching refs:Certificate
32 // The legacy implementation of this exposed the Certificate
40 function Certificate() {
41 if (!(this instanceof Certificate))
42 return new Certificate();
45 Certificate.prototype.verifySpkac = verifySpkac;
46 Certificate.prototype.exportPublicKey = exportPublicKey;
47 Certificate.prototype.exportChallenge = exportChallenge;
49 Certificate.exportChallenge = exportChallenge;
50 Certificate.exportPublicKey = exportPublicKey;
51 Certificate.verifySpkac = verifySpkac;
53 module.exports = Certificate;