]> andersk Git - openssh.git/blobdiff - ssh-keygen.c
Hopefully things did not get mixed around too much. It compiles under
[openssh.git] / ssh-keygen.c
index 5d9fa644ebd4101e54c73df5f687d6ebd7c831ba..9f519e5961aaeed9f70b57720f63bab9c49d742e 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh-keygen.c,v 1.39 2001/01/13 18:03:07 markus Exp $");
+RCSID("$OpenBSD: ssh-keygen.c,v 1.41 2001/01/21 19:05:57 markus Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/pem.h>
-#include <openssl/rsa.h>
-#include <openssl/dsa.h>
 
-#include "ssh.h"
 #include "xmalloc.h"
 #include "key.h"
-#include "rsa.h"
 #include "authfile.h"
 #include "uuencode.h"
-
 #include "buffer.h"
 #include "bufaux.h"
+#include "pathnames.h"
+#include "log.h"
+#include "readpass.h"
 
 /* Number of bits in the RSA/DSA key.  This value can be changed on the command line. */
 int bits = 1024;
@@ -87,13 +85,13 @@ ask_filename(struct passwd *pw, const char *prompt)
 
        switch (key_type_from_name(key_type_name)) {
        case KEY_RSA1:
-               name = SSH_CLIENT_IDENTITY;
+               name = _PATH_SSH_CLIENT_IDENTITY;
                break;
        case KEY_DSA:
-               name = SSH_CLIENT_ID_DSA;
+               name = _PATH_SSH_CLIENT_ID_DSA;
                break;
        case KEY_RSA:
-               name = SSH_CLIENT_ID_RSA;
+               name = _PATH_SSH_CLIENT_ID_RSA;
                break;
        default:
                fprintf(stderr, "bad key type");
@@ -757,7 +755,7 @@ main(int ac, char **av)
                ask_filename(pw, "Enter file in which to save the key");
 
        /* Create ~/.ssh directory if it doesn\'t already exist. */
-       snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, SSH_USER_DIR);
+       snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
        if (strstr(identity_file, dotsshdir) != NULL &&
            stat(dotsshdir, &st) < 0) {
                if (mkdir(dotsshdir, 0700) < 0)
This page took 0.03225 seconds and 4 git commands to generate.