Mercurial > dropbear
comparison auth.h @ 500:d588e3ea557a agent-client
propagate from branch 'au.asn.ucc.matt.dropbear' (head 4fb35083f0f46ea667e7043e7d4314aecd3df46c)
to branch 'au.asn.ucc.matt.dropbear.cli-agent' (head 833d0adef6cdbf43ea75283524c665e70b0ee1ee)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 23 Sep 2008 16:05:04 +0000 |
parents | df7f7da7f6e4 c1e9c81d1d27 |
children | 568638be7203 |
comparison
equal
deleted
inserted
replaced
499:f3ca5ebc319a | 500:d588e3ea557a |
---|---|
121 struct PubKeyOptions* pubkey_options; | 121 struct PubKeyOptions* pubkey_options; |
122 #endif | 122 #endif |
123 | 123 |
124 }; | 124 }; |
125 | 125 |
126 /* Sources for signing keys */ | |
127 #define SIGNKEY_SOURCE_RAW_FILE 1 | |
128 #define SIGNKEY_SOURCE_AGENT 21 | |
129 | |
126 struct SignKeyList; | 130 struct SignKeyList; |
127 /* A singly linked list of signing keys */ | 131 /* A singly linked list of signing keys */ |
128 struct SignKeyList { | 132 struct SignKeyList { |
129 | 133 |
130 sign_key *key; | 134 sign_key *key; |
131 int type; /* The type of key */ | 135 int type; /* The type of key */ |
132 struct SignKeyList *next; | 136 struct SignKeyList *next; |
137 int source; | |
133 /* filename? or the buffer? for encrypted keys, so we can later get | 138 /* filename? or the buffer? for encrypted keys, so we can later get |
134 * the private key portion */ | 139 * the private key portion */ |
135 | 140 |
136 }; | 141 }; |
137 | 142 |