diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-21 16:54:54 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-21 16:54:54 +0000 |
commit | a24bda6ee3b42917c396e2bf042fe521792a7f3f (patch) | |
tree | eda74fc53ba01024f46b6019615b464e97598ce9 /usr.bin/ssh/scard.h | |
parent | ef5975ec065080bc52857ff7d10225a71c2a6f83 (diff) |
move key upload to scard.[ch]
Diffstat (limited to 'usr.bin/ssh/scard.h')
-rw-r--r-- | usr.bin/ssh/scard.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/scard.h b/usr.bin/ssh/scard.h index 6ca99169b55..c46eae1be66 100644 --- a/usr.bin/ssh/scard.h +++ b/usr.bin/ssh/scard.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scard.h,v 1.7 2002/03/04 17:27:39 stevesk Exp $ */ +/* $OpenBSD: scard.h,v 1.8 2002/03/21 16:54:53 markus Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -29,6 +29,8 @@ #ifndef SCARD_H #define SCARD_H +#include "key.h" + #define SCARD_ERROR_FAIL -1 #define SCARD_ERROR_NOCARD -2 #define SCARD_ERROR_APPLET -3 @@ -36,5 +38,6 @@ Key *sc_get_key(const char*); ENGINE *sc_get_engine(void); void sc_close(void); +int sc_put_key(Key *, const char*); #endif |