scd:openpgp: Support longer data for INTERNAL_AUTHENTICATE.

* scd/app-openpgp.c (do_auth): Use extended Lc, when supported.

--

GnuPG-bug-id: 5682
Co-authored-by: Klas Lindfors
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2021-11-15 11:40:41 +09:00
parent bd5c775878
commit a575b0aba5
1 changed files with 8 additions and 0 deletions

View File

@ -5418,6 +5418,14 @@ do_auth (app_t app, ctrl_t ctrl, const char *keyidstr,
exmode = 1; /* Use extended length. */
le_value = app->app_local->keyattr[2].rsa.n_bits / 8;
}
else if (indatalen > 255)
{
if (!app->app_local->cardcap.ext_lc_le)
return gpg_error (GPG_ERR_TOO_LARGE);
exmode = 1;
le_value = 0;
}
else
{
exmode = 0;