(otherCert)
| 368 | } |
| 369 | |
| 370 | checkIssued(otherCert) { |
| 371 | if (!isX509Certificate(otherCert)) |
| 372 | throw new ERR_INVALID_ARG_TYPE('otherCert', 'X509Certificate', otherCert); |
| 373 | return this[kHandle].checkIssued(otherCert[kHandle]); |
| 374 | } |
| 375 | |
| 376 | checkPrivateKey(pkey) { |
| 377 | if (!isKeyObject(pkey)) |
no test coverage detected