Enables the second PIN (one-time PIN) defined for the same application DF

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3206 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
vtarasov 2007-07-04 14:25:39 +00:00
parent 2012f64ba2
commit 174802aa56
2 changed files with 5 additions and 2 deletions

View File

@ -1569,6 +1569,9 @@ auth_card_ctl(sc_card_t *card, unsigned long cmd, void *ptr)
(struct sc_cardctl_oberthur_createpin_info *) ptr);
case SC_CARDCTL_GET_SERIALNR:
return auth_get_serialnr(card, (sc_serial_number_t *)ptr);
case SC_CARDCTL_LIFECYCLE_GET:
case SC_CARDCTL_LIFECYCLE_SET:
return SC_ERROR_NOT_SUPPORTED;
default:
SC_FUNC_RETURN(card->ctx, 1, SC_ERROR_NOT_SUPPORTED);
}
@ -1868,7 +1871,7 @@ auth_create_reference_data (sc_card_t *card,
if (args->ref == 1)
pin_ref = 0x01;
else if (args->ref == 2)
pin_ref = 0x04;
pin_ref = 0x02;
else
SC_TEST_RET(card->ctx, SC_ERROR_INVALID_PIN_REFERENCE, "Invalid PIN reference");
}

View File

@ -399,7 +399,7 @@ cosm_create_pin(sc_profile_t *profile, sc_card_t *card, sc_file_t *df,
else {
type = SC_PKCS15INIT_USER_PIN;
if (pinfo->reference !=1)
if (pinfo->reference !=1 && pinfo->reference != 2)
return SC_ERROR_INVALID_PIN_REFERENCE;
}