martinpaljak / vJCRE

Virtual Java Card Runtime Environment RETIRED
52 stars 22 forks source link

Missing constant in ISO7816.java #3

Open vletoux opened 8 years ago

vletoux commented 8 years ago

The constant SW_COMMAND_CHAINING_NOT_SUPPORTED is missing

Reference: http://www.win.tue.nl/pinpasjc/docs/apis/jc222/javacard/framework/ISO7816.html#SW_COMMAND_CHAINING_NOT_SUPPORTED

Underlying code: https://github.com/martinpaljak/vJCRE/blob/85c7828089fcde0fa8cde89a622b5ec582804947/src/javacard/framework/ISO7816.java

missing line: short SW_COMMAND_CHAINING_NOT_SUPPORTED = 0x6884;

vletoux commented 8 years ago

see PR #5

martinpaljak commented 8 years ago

Thanks, I'll review all the JC projects on Github and their issues and PR-s next week.

frankmorgner commented 4 years ago

@martinpaljak what's the status, did you abandon this project?

martinpaljak commented 4 years ago

Pretty much, there are some corner cases where jcardsim does not work, but not many.

frankmorgner commented 4 years ago

I see. Maybe adding some note in the README.md would be a good idea.

By the way, for F-Droid, which discourages pre-built JARs, I still use vJCRE as replacement for Oracle's api_classic.jar... (actual emulation is done with JCardSim). Do you know where to find Oracle's sources?