Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 18x 18x 18x 18x 25x 12x 12x 12x 12x 25x 12x 12x 12x 12x 25x 25x 25x 25x 25x 25x 25x 25x 25x 3x 3x 3x 3x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x | 'use strict'; const { certExportChallenge, certExportPublicKey, certVerifySpkac, } = internalBinding('crypto'); const { getArrayBufferOrView, } = require('internal/crypto/util'); // The functions contained in this file cover the SPKAC format // (also referred to as Netscape SPKI). A general description of // the format can be found at https://en.wikipedia.org/wiki/SPKAC function verifySpkac(spkac, encoding) { return certVerifySpkac( getArrayBufferOrView(spkac, 'spkac', encoding)); } function exportPublicKey(spkac, encoding) { return certExportPublicKey( getArrayBufferOrView(spkac, 'spkac', encoding)); } function exportChallenge(spkac, encoding) { return certExportChallenge( getArrayBufferOrView(spkac, 'spkac', encoding)); } // The legacy implementation of this exposed the Certificate // object and required that users create an instance before // calling the member methods. This API pattern has been // deprecated, however, as the method implementations do not // rely on any object state. // For backwards compatibility reasons, this cannot be converted into a // ES6 Class. function Certificate() { if (!(this instanceof Certificate)) return new Certificate(); } Certificate.prototype.verifySpkac = verifySpkac; Certificate.prototype.exportPublicKey = exportPublicKey; Certificate.prototype.exportChallenge = exportChallenge; Certificate.exportChallenge = exportChallenge; Certificate.exportPublicKey = exportPublicKey; Certificate.verifySpkac = verifySpkac; module.exports = Certificate; |