implemente PKCS#15 emulator for nPA

This commit is contained in:
Frank Morgner
2014-02-28 22:34:39 +01:00
parent d81491f4ea
commit 21087fe434
3 changed files with 283 additions and 2 deletions

View File

@@ -19,5 +19,23 @@ app default {
card_driver npa {
# The location of the driver library
module = @libdir@/libcardnpa.@DYN_LIB_EXT@;
# }
}
# PKCS #15
framework pkcs15 {
# additional settings per driver
#
# For pkcs15 emulators loaded from an external shared
# library/DLL, you need to specify the path name of the module
# and customize the card_atr example above correctly.
#
emulate npa {
# The location of the driver library
module = @libdir@/libpkcs15npa.@DYN_LIB_EXT@;
function = sc_pkcs15emu_npa_init_ex;
can = 222222;
}
}
}