From 01fca7a4021e201676fdad2778e78e24c7300092 Mon Sep 17 00:00:00 2001 From: mouring Date: Wed, 4 Jul 2001 04:52:03 +0000 Subject: - markus@cvs.openbsd.org 2001/06/26 20:14:11 [key.c key.h ssh.c sshconnect1.c sshconnect2.c] add smartcard support to the client, too (now you can use both the agent and the client). --- key.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'key.h') diff --git a/key.h b/key.h index 562834c9..2b4fbce0 100644 --- a/key.h +++ b/key.h @@ -1,4 +1,4 @@ -/* $OpenBSD: key.h,v 1.15 2001/06/26 17:27:23 markus Exp $ */ +/* $OpenBSD: key.h,v 1.16 2001/06/26 20:14:10 markus Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -44,8 +44,13 @@ enum fp_rep { SSH_FP_HEX, SSH_FP_BUBBLEBABBLE }; + +/* key is stored in external hardware */ +#define KEY_FLAG_EXT 0x0001 + struct Key { - int type; + int type; + int flags; RSA *rsa; DSA *dsa; }; -- cgit v1.2.1