(ip, options)
| 358 | } |
| 359 | |
| 360 | checkIP(ip, options) { |
| 361 | validateString(ip, 'ip'); |
| 362 | // The options argument is currently undocumented since none of the options |
| 363 | // have any effect on the behavior of this function. However, we still parse |
| 364 | // the options argument in case OpenSSL adds flags in the future that do |
| 365 | // affect the behavior of X509_check_ip. This ensures that no invalid values |
| 366 | // are passed as the second argument in the meantime. |
| 367 | return this[kHandle].checkIP(ip, getFlags(options)); |
| 368 | } |
| 369 | |
| 370 | checkIssued(otherCert) { |
| 371 | if (!isX509Certificate(otherCert)) |
no test coverage detected