Remove unnecessary DSS bit
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Wed, 27 Sep 2000 16:44:00 +0000 (16:44 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Wed, 27 Sep 2000 16:44:00 +0000 (16:44 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@641 cda61777-01e9-0310-a592-d414129be87e

sshpubk.c

index fb5b7cc..d58e30a 100644 (file)
--- a/sshpubk.c
+++ b/sshpubk.c
@@ -8,10 +8,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-#include <stdarg.h> /* FIXME */
-#include <windows.h> /* FIXME */
-
-#include "putty.h"
 #include "ssh.h"
 
 #define GET_32BIT(cp) \
@@ -21,7 +17,6 @@
     ((unsigned long)(unsigned char)(cp)[3]))
 
 #define rsa_signature "SSH PRIVATE KEY FILE FORMAT 1.1\n"
-#define dss_signature "-----BEGIN DSA PRIVATE KEY-----\n"
 
 #define BASE64_TOINT(x) ( (x)-'A'<26 ? (x)-'A'+0 :\
                           (x)-'a'<26 ? (x)-'a'+26 :\