Lines 565-572
main(int argc, char *argv[])
Link Here
|
565 |
#ifdef HAVE_CRYPTO |
565 |
#ifdef HAVE_CRYPTO |
566 |
if (cipher != KERNELDUMP_ENC_NONE && pubkeyfile == NULL) { |
566 |
if (cipher != KERNELDUMP_ENC_NONE && pubkeyfile == NULL) { |
567 |
errx(EX_USAGE, "-C option requires a public key file."); |
567 |
errx(EX_USAGE, "-C option requires a public key file."); |
|
|
568 |
# if OPENSSL_API_COMPAT < 0x10100000L |
568 |
} else if (pubkeyfile != NULL) { |
569 |
} else if (pubkeyfile != NULL) { |
569 |
ERR_load_crypto_strings(); |
570 |
ERR_load_crypto_strings(); |
|
|
571 |
# endif |
570 |
} |
572 |
} |
571 |
#else |
573 |
#else |
572 |
if (pubkeyfile != NULL) |
574 |
if (pubkeyfile != NULL) |
573 |
- |
|
|