- it seems the upper limit for r/w binary is 244

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1130 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
okir 2003-05-15 15:42:45 +00:00
parent e396ff5c95
commit 30c094395a
1 changed files with 2 additions and 2 deletions

View File

@ -83,9 +83,9 @@ static int miocos_init(struct sc_card *card)
_sc_card_add_rsa_alg(card, 1024, flags, 0);
}
/* read_binary and friends shouldn't do more than 128 bytes
/* read_binary and friends shouldn't do more than 244 bytes
* per operation */
card->max_le = 0x80;
card->max_le = 244;
return 0;
}