diff options
author | Tobias Brunner <tobias@strongswan.org> | 2008-12-03 10:12:20 +0000 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2008-12-03 10:12:20 +0000 |
commit | 83c42156a237290f7ebf6d5270491a26e05e1eaa (patch) | |
tree | 4db69cd268e12162afda8380bd55cc76c0acc9a6 /src/libstrongswan/credentials/builder.h | |
parent | c3bdc3cd7fcb246f0345a39ae4678982b3259511 (diff) | |
download | strongswan-83c42156a237290f7ebf6d5270491a26e05e1eaa.tar.bz2 strongswan-83c42156a237290f7ebf6d5270491a26e05e1eaa.tar.xz |
add support for smartcards in charon by using the ENGINE API provided by OpenSSL, based on patches by Michael Roßberg.
Diffstat (limited to 'src/libstrongswan/credentials/builder.h')
-rw-r--r-- | src/libstrongswan/credentials/builder.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstrongswan/credentials/builder.h b/src/libstrongswan/credentials/builder.h index cd75236ba..332d52d52 100644 --- a/src/libstrongswan/credentials/builder.h +++ b/src/libstrongswan/credentials/builder.h @@ -76,6 +76,10 @@ enum builder_part_t { BUILD_CERT, /** enforce an additional X509 flag, x509_flag_t */ BUILD_X509_FLAG, + /** key ID of a key on a smartcard, null terminated char* ([slot:]keyid) */ + BUILD_SMARTCARD_KEYID, + /** pin to access a key on a smartcard, null terminated char* */ + BUILD_SMARTCARD_PIN, /** end of variable argument builder list */ BUILD_END, }; |