enable pin caching by default.

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3158 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aj 2007-04-24 07:54:18 +00:00
parent c3438ef4ff
commit e3935077e1
2 changed files with 4 additions and 4 deletions

View File

@ -341,8 +341,8 @@ app opensc-pkcs11 {
# In this case, you can turn on PIN caching by setting
# cache_pins = true
#
# Default: false
# cache_pins = true;
# Default: true
# cache_pins = false;
# Set this value to false if you want to enforce on-card
# keypair generation

View File

@ -318,7 +318,7 @@ void load_pkcs11_parameters(struct sc_pkcs11_config *conf, sc_context_t *ctx)
conf->num_slots = SC_PKCS11_DEF_SLOTS_PER_CARD;
conf->hide_empty_tokens = 0;
conf->lock_login = 0;
conf->cache_pins = 0;
conf->cache_pins = 1;
conf->soft_keygen_allowed = 1;
for (i = 0; ctx->conf_blocks[i] != NULL; i++) {
@ -336,6 +336,6 @@ void load_pkcs11_parameters(struct sc_pkcs11_config *conf, sc_context_t *ctx)
conf->num_slots = scconf_get_int(conf_block, "num_slots", conf->num_slots);
conf->hide_empty_tokens = scconf_get_bool(conf_block, "hide_empty_tokens", 0);
conf->lock_login = scconf_get_bool(conf_block, "lock_login", 0);
conf->cache_pins = scconf_get_bool(conf_block, "cache_pins", 0);
conf->cache_pins = scconf_get_bool(conf_block, "cache_pins", 1);
conf->soft_keygen_allowed = scconf_get_bool(conf_block, "soft_keygen_allowed", 1);
}