summaryrefslogtreecommitdiff
path: root/authfd.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-21 00:04:48 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-21 00:04:48 +0000
commit4eb4c4e1ef39906056e282d6e160350dcd3fa533 (patch)
tree9a31a7dc0115b01bc26d57fb488fb9cadf6b499d /authfd.h
parentf0bfa839bda8309c45b807e55bb2b2dfac7a6f9a (diff)
- markus@cvs.openbsd.org 2002/06/15 00:01:36
[authfd.c authfd.h ssh-add.c ssh-agent.c] break agent key lifetime protocol and allow other contraints for key usage.
Diffstat (limited to 'authfd.h')
-rw-r--r--authfd.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/authfd.h b/authfd.h
index 263e4b97d..e3ef6ff5e 100644
--- a/authfd.h
+++ b/authfd.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfd.h,v 1.26 2002/06/05 21:55:44 markus Exp $ */ 1/* $OpenBSD: authfd.h,v 1.27 2002/06/15 00:01:36 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -46,9 +46,11 @@
46#define SSH_AGENTC_LOCK 22 46#define SSH_AGENTC_LOCK 22
47#define SSH_AGENTC_UNLOCK 23 47#define SSH_AGENTC_UNLOCK 23
48 48
49/* set key lifetime */ 49/* constrain key usage */
50#define SSH_AGENTC_LIFETIME_IDENTITY1 24 50#define SSH_AGENTC_CONTRAIN_IDENTITY1 24
51#define SSH_AGENTC_LIFETIME_IDENTITY 25 51#define SSH_AGENTC_CONTRAIN_IDENTITY 25
52
53#define SSH_AGENT_CONTRAIN_LIFETIME 1
52 54
53/* extended failure messages */ 55/* extended failure messages */
54#define SSH2_AGENT_FAILURE 30 56#define SSH2_AGENT_FAILURE 30
@@ -73,7 +75,7 @@ int ssh_get_num_identities(AuthenticationConnection *, int);
73Key *ssh_get_first_identity(AuthenticationConnection *, char **, int); 75Key *ssh_get_first_identity(AuthenticationConnection *, char **, int);
74Key *ssh_get_next_identity(AuthenticationConnection *, char **, int); 76Key *ssh_get_next_identity(AuthenticationConnection *, char **, int);
75int ssh_add_identity(AuthenticationConnection *, Key *, const char *); 77int ssh_add_identity(AuthenticationConnection *, Key *, const char *);
76int ssh_lifetime_identity(AuthenticationConnection *, Key *, u_int); 78int ssh_contrain_identity(AuthenticationConnection *, Key *, u_int);
77int ssh_remove_identity(AuthenticationConnection *, Key *); 79int ssh_remove_identity(AuthenticationConnection *, Key *);
78int ssh_remove_all_identities(AuthenticationConnection *, int); 80int ssh_remove_all_identities(AuthenticationConnection *, int);
79int ssh_lock_agent(AuthenticationConnection *, int, const char *); 81int ssh_lock_agent(AuthenticationConnection *, int, const char *);