mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
scd: Support for SmartCard-HSM
* scd/app-sc-hsm.c: New. * scd/app.c (select_application, get_supported_applications): Register new app. -- Add a read/only driver for scdaemon that provides access to keys and certificates on a SmartCard-HSM (www.smartcard-hsm.com). The driver supports RSA and ECC keys on SmartCard-HSM cards and USB-Sticks. The driver does not yet support the MicroSD edition. -- ChangeLog and FSF copyright year fix by wk.
This commit is contained in:
parent
557cc11a60
commit
8eb9224f32
@ -340,6 +340,7 @@ stripping off the two leading dashes.
|
|||||||
* DINSIG Card:: The DINSIG card application
|
* DINSIG Card:: The DINSIG card application
|
||||||
* PKCS#15 Card:: The PKCS#15 card application
|
* PKCS#15 Card:: The PKCS#15 card application
|
||||||
* Geldkarte Card:: The Geldkarte application
|
* Geldkarte Card:: The Geldkarte application
|
||||||
|
* SmartCard-HSM:: The SmartCard-HSM application
|
||||||
* Undefined Card:: The Undefined stub application
|
* Undefined Card:: The Undefined stub application
|
||||||
@end menu
|
@end menu
|
||||||
|
|
||||||
@ -382,6 +383,19 @@ This is a simple application to display information of a German
|
|||||||
Geldkarte. The Geldkarte is a small amount debit card application which
|
Geldkarte. The Geldkarte is a small amount debit card application which
|
||||||
comes with almost all German banking cards.
|
comes with almost all German banking cards.
|
||||||
|
|
||||||
|
@node SmartCard-HSM
|
||||||
|
@subsection The SmartCard-HSM card application ``sc-hsm''
|
||||||
|
|
||||||
|
This application adds read/only support for keys and certificates
|
||||||
|
stored on a @uref{http://www.smartcard-hsm.com, SmartCard-HSM}.
|
||||||
|
|
||||||
|
To generate keys and store certifiates you may use
|
||||||
|
@uref{https://github.com/OpenSC/OpenSC/wiki/SmartCardHSM, OpenSC} or
|
||||||
|
the tools from @uref{http://www.openscdp.org, OpenSCDP}.
|
||||||
|
|
||||||
|
The SmartCard-HSM cards requires a card reader that supports Extended
|
||||||
|
Length APDUs.
|
||||||
|
|
||||||
@node Undefined Card
|
@node Undefined Card
|
||||||
@subsection The Undefined card application ``undefined''
|
@subsection The Undefined card application ``undefined''
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ AM_CFLAGS = $(LIBGCRYPT_CFLAGS) \
|
|||||||
$(KSBA_CFLAGS) $(LIBASSUAN_CFLAGS) $(NPTH_CFLAGS)
|
$(KSBA_CFLAGS) $(LIBASSUAN_CFLAGS) $(NPTH_CFLAGS)
|
||||||
|
|
||||||
|
|
||||||
card_apps = app-openpgp.c app-nks.c app-dinsig.c app-p15.c app-geldkarte.c
|
card_apps = app-openpgp.c app-nks.c app-dinsig.c app-p15.c app-geldkarte.c app-sc-hsm.c
|
||||||
|
|
||||||
scdaemon_SOURCES = \
|
scdaemon_SOURCES = \
|
||||||
scdaemon.c scdaemon.h \
|
scdaemon.c scdaemon.h \
|
||||||
|
@ -223,6 +223,9 @@ gpg_error_t app_select_p15 (app_t app);
|
|||||||
/*-- app-geldkarte.c --*/
|
/*-- app-geldkarte.c --*/
|
||||||
gpg_error_t app_select_geldkarte (app_t app);
|
gpg_error_t app_select_geldkarte (app_t app);
|
||||||
|
|
||||||
|
/*-- app-sc-hsm.c --*/
|
||||||
|
gpg_error_t app_select_sc_hsm (app_t app);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
2020
scd/app-sc-hsm.c
Normal file
2020
scd/app-sc-hsm.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -387,6 +387,8 @@ select_application (ctrl_t ctrl, int slot, const char *name, app_t *r_app)
|
|||||||
err = app_select_geldkarte (app);
|
err = app_select_geldkarte (app);
|
||||||
if (err && is_app_allowed ("dinsig") && (!name || !strcmp (name, "dinsig")))
|
if (err && is_app_allowed ("dinsig") && (!name || !strcmp (name, "dinsig")))
|
||||||
err = app_select_dinsig (app);
|
err = app_select_dinsig (app);
|
||||||
|
if (err && is_app_allowed ("sc-hsm") && (!name || !strcmp (name, "sc-hsm")))
|
||||||
|
err = app_select_sc_hsm (app);
|
||||||
if (err && name)
|
if (err && name)
|
||||||
err = gpg_error (GPG_ERR_NOT_SUPPORTED);
|
err = gpg_error (GPG_ERR_NOT_SUPPORTED);
|
||||||
|
|
||||||
@ -422,6 +424,7 @@ get_supported_applications (void)
|
|||||||
"p15",
|
"p15",
|
||||||
"geldkarte",
|
"geldkarte",
|
||||||
"dinsig",
|
"dinsig",
|
||||||
|
"sc-hsm",
|
||||||
/* Note: "undefined" is not listed here because it needs special
|
/* Note: "undefined" is not listed here because it needs special
|
||||||
treatment by the client. */
|
treatment by the client. */
|
||||||
NULL
|
NULL
|
||||||
|
Loading…
x
Reference in New Issue
Block a user