diff options
author | 2000-04-12 09:39:09 +0000 | |
---|---|---|
committer | 2000-04-12 09:39:09 +0000 | |
commit | 3f5edc8c8cb707a9faab0b2433bf5249a92ad725 (patch) | |
tree | 5d5e1b7a327dfe790b4564820a185ddaa4b988ef /usr.bin/ssh/rsa.h | |
parent | print 1.99 only if server supports both (diff) | |
download | wireguard-openbsd-3f5edc8c8cb707a9faab0b2433bf5249a92ad725.tar.xz wireguard-openbsd-3f5edc8c8cb707a9faab0b2433bf5249a92ad725.zip |
#include <ssl/foo.h> -> <openssh/foo.h>
Diffstat (limited to 'usr.bin/ssh/rsa.h')
-rw-r--r-- | usr.bin/ssh/rsa.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/rsa.h b/usr.bin/ssh/rsa.h index 2e33cee5081..5765d4aac36 100644 --- a/usr.bin/ssh/rsa.h +++ b/usr.bin/ssh/rsa.h @@ -13,13 +13,13 @@ * */ -/* RCSID("$Id: rsa.h,v 1.4 1999/11/24 19:53:50 markus Exp $"); */ +/* RCSID("$Id: rsa.h,v 1.5 2000/04/12 09:39:10 markus Exp $"); */ #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); |