diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-07-18 14:32:52 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-07-18 14:32:52 +0000 |
commit | e444f0cfe67c71d3f38854f27cefae9aea6c4cd9 (patch) | |
tree | 7539060f852ea180fe550525412f7345a464adba /auth.h | |
parent | b8e28df43a1d37b5a50b34db357daea98c42a89c (diff) |
- progress towards client agent forwarding
(incomplete and does not compile)
--HG--
branch : agent-client
extra : convert_revision : 01038174ec27245b51bd43a66c01ad930880f67b
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -84,6 +84,10 @@ struct AuthState { }; +/* Sources for signing keys */ +#define SIGNKEY_SOURCE_RAW_FILE 1 +#define SIGNKEY_SOURCE_AGENT 21 + struct SignKeyList; /* A singly linked list of signing keys */ struct SignKeyList { @@ -91,6 +95,7 @@ struct SignKeyList { sign_key *key; int type; /* The type of key */ struct SignKeyList *next; + int source; /* filename? or the buffer? for encrypted keys, so we can later get * the private key portion */ |