summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2009-07-06 12:59:13 +0000
committerMatt Johnston <matt@ucc.asn.au>2009-07-06 12:59:13 +0000
commit842e8f52e3cd511b48d4f46bbfd67b1c86f30733 (patch)
tree25f52a38fb21d20051e2e44faa40ab25f45a5cad /auth.h
parenta09f4c9219b21736a1038d9b38b37c1592a63328 (diff)
downloaddropbear-842e8f52e3cd511b48d4f46bbfd67b1c86f30733.tar.gz
New standard linked list to use, rather than adhoc SignKeyList or TCPFwdList
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/auth.h b/auth.h
index a35416c..d22f812 100644
--- a/auth.h
+++ b/auth.h
@@ -124,26 +124,6 @@ struct AuthState {
};
-/* Sources for signing keys */
-typedef enum {
- SIGNKEY_SOURCE_RAW_FILE,
- SIGNKEY_SOURCE_AGENT,
-} signkey_source;
-
-struct SignKeyList;
-/* A singly linked list of signing keys */
-struct SignKeyList {
-
- sign_key *key;
- int type; /* The type of key */
- struct SignKeyList *next;
- signkey_source source;
- char *filename;
- /* the buffer? for encrypted keys, so we can later get
- * the private key portion */
-
-};
-
#ifdef ENABLE_SVR_PUBKEY_OPTIONS
struct PubKeyOptions;
struct PubKeyOptions {