Mercurial > dropbear
comparison auth.h @ 215:aad4b3f58556
rename PubkeyList to SignKeyList for clarity
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 08 Jul 2005 11:32:09 +0000 |
parents | 3b2a5a1c4347 |
children | ca7e76d981d9 bf64e666f99b |
comparison
equal
deleted
inserted
replaced
214:5a75f8a21503 | 215:aad4b3f58556 |
---|---|
82 char *printableuser; /* stripped of control chars, used for logs etc */ | 82 char *printableuser; /* stripped of control chars, used for logs etc */ |
83 struct passwd * pw; | 83 struct passwd * pw; |
84 | 84 |
85 }; | 85 }; |
86 | 86 |
87 struct PubkeyList; | 87 struct SignKeyList; |
88 /* A singly linked list of pubkeys */ | 88 /* A singly linked list of signing keys */ |
89 struct PubkeyList { | 89 struct SignKeyList { |
90 | 90 |
91 sign_key *key; | 91 sign_key *key; |
92 int type; /* The type of key */ | 92 int type; /* The type of key */ |
93 struct PubkeyList *next; | 93 struct SignKeyList *next; |
94 /* filename? or the buffer? for encrypted keys, so we can later get | 94 /* filename? or the buffer? for encrypted keys, so we can later get |
95 * the private key portion */ | 95 * the private key portion */ |
96 | 96 |
97 }; | 97 }; |
98 | 98 |