Save RSA public and private keys to a separate file, instead of

wanting to copy them into a configuration file.
This commit is contained in:
Ivo Timmermans 2000-11-28 23:12:57 +00:00
parent 4c502b005b
commit 3ff76eb10a
3 changed files with 70 additions and 12 deletions

View file

@ -41,12 +41,12 @@ if test "$tinc_cv_openssl_include" != "none given" ; then
fi
osi=found
AC_CHECK_HEADERS(evp.h rsa.h rand.h err.h sha.h,
AC_CHECK_HEADERS(evp.h rsa.h rand.h err.h sha.h pem.h,
[], [osi=none; break])
if test "$osi" = "none" ; then
osi=found
AC_CHECK_HEADERS(openssl/evp.h openssl/rsa.h openssl/rand.h openssl/err.h openssl/sha.h,
AC_CHECK_HEADERS(openssl/evp.h openssl/rsa.h openssl/rand.h openssl/err.h openssl/sha.h openssl/pem.h,
[], [osi=none; break])
fi