spkac{Buffer | TypedArray | DataView}- Returns: {boolean}
trueif the givenspkacdata structure is valid,falseotherwise.
const cert = require('crypto').Certificate();const spkac = getSpkacSomehow();console.log(cert.verifySpkac(Buffer.from(spkac)));// Prints: true or false
