Reputation: 89
The task is to implement a Java Card application (Applet) with biomentric (fingerprint)-based security. I see that since Java Card specification v2.2.2 the API contains a special package - javacardx.biometry
- with interfaces such as BioTemplate
and BioBuilder
but I don't see any implementation.
Upvotes: 3
Views: 1423
Reputation: 93958
javacardx.biometry
is only a generic interface which makes it easier for developers to implement an Applet for a card that features biometry. Otherwise you would have to use vendor specific code; now you can simply send a biometric template in a byte[]
to the vendor specific implementation. If you would switch smart card implementations you would have little to no work to do to port you Applet.
Java Card seems to place no restrictions on the API. So yes, you need a combined package from a Java Card vendor and a biometrics supplier to be able to use match on card. The availability of many API's (and cipher constants) in Java Card does not mean that those features are present on these cards.
Upvotes: 3