diff options
author | dcashman <dcashman@google.com> | 2014-07-07 16:20:40 -0700 |
---|---|---|
committer | dcashman <dcashman@google.com> | 2014-07-07 16:20:40 -0700 |
commit | 6dd962236c57f327b92b0c8f09f649279980023c (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /hostfile.h | |
parent | 30b9ff3dd1a2663d017fea74adfbcd3da4aa2635 (diff) |
Remove sshd.
This may require changes to other code, such as fastbootd, which relies on this
service. sshd is not currently, used, however, so this change will force any
such code to be changed.
Bug: 11594902
Change-Id: I07e52008290dab5825be2ad062cbe730fa7dff71
Diffstat (limited to 'hostfile.h')
-rw-r--r-- | hostfile.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/hostfile.h b/hostfile.h deleted file mode 100644 index d84d422f..00000000 --- a/hostfile.h +++ /dev/null @@ -1,54 +0,0 @@ -/* $OpenBSD: hostfile.h,v 1.19 2010/11/29 23:45:51 djm Exp $ */ - -/* - * Author: Tatu Ylonen <ylo@cs.hut.fi> - * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland - * All rights reserved - * - * As far as I am concerned, the code I have written for this software - * can be used freely for any purpose. Any derived versions of this - * software must be clearly marked as such, and if the derived work is - * incompatible with the protocol description in the RFC file, it must be - * called by a name other than "ssh" or "Secure Shell". - */ -#ifndef HOSTFILE_H -#define HOSTFILE_H - -typedef enum { - HOST_OK, HOST_NEW, HOST_CHANGED, HOST_REVOKED, HOST_FOUND -} HostStatus; - -typedef enum { - MRK_ERROR, MRK_NONE, MRK_REVOKE, MRK_CA -} HostkeyMarker; - -struct hostkey_entry { - char *host; - char *file; - u_long line; - Key *key; - HostkeyMarker marker; -}; -struct hostkeys; - -struct hostkeys *init_hostkeys(void); -void load_hostkeys(struct hostkeys *, const char *, const char *); -void free_hostkeys(struct hostkeys *); - -HostStatus check_key_in_hostkeys(struct hostkeys *, Key *, - const struct hostkey_entry **); -int lookup_key_in_hostkeys_by_type(struct hostkeys *, int, - const struct hostkey_entry **); - -int hostfile_read_key(char **, u_int *, Key *); -int add_host_to_hostfile(const char *, const char *, const Key *, int); - -#define HASH_MAGIC "|1|" -#define HASH_DELIM '|' - -#define CA_MARKER "@cert-authority" -#define REVOKE_MARKER "@revoked" - -char *host_hash(const char *, const char *, u_int); - -#endif |