summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-rsa.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2001-01-21 19:05:40 +0000
committermarkus <markus@openbsd.org>2001-01-21 19:05:40 +0000
commit94dd3409f9fcf5debd9fa3029b571b40836be45f (patch)
tree1080bdcf48d87d7f7e6d8eb1e570f76b453298fc /usr.bin/ssh/ssh-rsa.c
parentUVM and PMAP_NEW are required. (diff)
downloadwireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.tar.xz
wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.zip
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r--usr.bin/ssh/ssh-rsa.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c
index e53af9e0a3b..2dc34106667 100644
--- a/usr.bin/ssh/ssh-rsa.c
+++ b/usr.bin/ssh/ssh-rsa.c
@@ -23,18 +23,15 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-rsa.c,v 1.4 2001/01/16 19:20:06 markus Exp $");
-
-#include "ssh.h"
-#include "xmalloc.h"
-#include "buffer.h"
-#include "bufaux.h"
+RCSID("$OpenBSD: ssh-rsa.c,v 1.5 2001/01/21 19:05:58 markus Exp $");
#include <openssl/evp.h>
-#include <openssl/dsa.h>
-#include <openssl/rsa.h>
#include <openssl/err.h>
+#include "xmalloc.h"
+#include "log.h"
+#include "buffer.h"
+#include "bufaux.h"
#include "key.h"
/* RSASSA-PKCS1-v1_5 (PKCS #1 v2.0 signature) with SHA1 */