diff options
author | green <green@FreeBSD.org> | 2000-02-25 01:53:12 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-02-25 01:53:12 +0000 |
commit | 129e6a7558924fd605b1352ddfa7a910dee9ee89 (patch) | |
tree | bca1b2f7d9df0e032f199c9e266b76deb4a15c99 /crypto/openssh/rsa.h | |
parent | ccef1c20fcfcfbf8bb4c20cfb5643721db5d16b6 (diff) | |
download | FreeBSD-src-129e6a7558924fd605b1352ddfa7a910dee9ee89.zip FreeBSD-src-129e6a7558924fd605b1352ddfa7a910dee9ee89.tar.gz |
The includes must be <openssl/.*\.h>, not <ssl/.*\.h>.
Diffstat (limited to 'crypto/openssh/rsa.h')
-rw-r--r-- | crypto/openssh/rsa.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/openssh/rsa.h b/crypto/openssh/rsa.h index 2e33cee..c5c601f 100644 --- a/crypto/openssh/rsa.h +++ b/crypto/openssh/rsa.h @@ -11,6 +11,7 @@ * * RSA key generation, encryption and decryption. * + * $FreeBSD$ */ /* RCSID("$Id: rsa.h,v 1.4 1999/11/24 19:53:50 markus Exp $"); */ @@ -18,8 +19,8 @@ #ifndef RSA_H #define RSA_H -#include <ssl/bn.h> -#include <ssl/rsa.h> +#include <openssl/bn.h> +#include <openssl/rsa.h> /* Calls SSL RSA_generate_key, only copies to prv and pub */ void rsa_generate_key(RSA * prv, RSA * pub, unsigned int bits); |