Java Card Technology
Java Card Technology
Presentation Agenda
Identify
Java Card Technology Identify Elements of Java Card Applications Communicating with a Java Card Applet Java Card Language Limitations Questions
3
Java Card?
What
is a Java Card?
Simple Answer:
Java + Card = Java Card !! Adoption of Java Platform for usage on Smart Cards
Smart Cards?
A
smart card is a plastic card that contains an embedded integrated circuit (IC) Examples:
Our very Own T-Card! Credit Cards Cell Phone SIM Cards 5
They
store and process Information Smart Cards Can be used to add authentication and secure access to information systems that require a high level of security
secure-Tempering with one, results in destruction of the information it contains Dont contain battery- Become active when connected with a card reader Come in two forms Contact or Contact less
7
contact smart cards work by communicating via physical contact between a card reader and the smart card contact less smart cards communicate by means of a radio frequency signal, with a typical range of less than 2 feet
8
does a smart card operate? Whats the platform used for its operations? What are different elements of these smart cards?
11
Example:
In an electronic payment system, the back-end application could provide access to credit card and other payment information
12
The Reader-Side
Consists
of two parts:
Think
of a bank machine:
Host Application as the Computer that provides interaction with the system Card Acceptance Device being where you put your debit card in 13
The Card-Side
Elements: One or more Java Applets Cards operating System Java Card Runtime Environment(JCRE)
Java Card Virtual Machine Java Card Framework and APIs
14
15
16
All
Java Card applets extend the Applet base class and must implement the install() and process() methods JCRE calls install() when installing the applet, and process() every time there is an incoming APDU for the applet APDU: a logical data packet that's exchanged between the CAD and the Java Card Framework (It is considered as the center piece for the Message-Passing Model)
17
18
19
20
The Message-Passing Model 3. Processing APDUs Every time there is an incoming APDU for a selected applet:
The JCRE invokes the applet's process() method The incoming APDU is passed as an argument The applet must:
parse the command APDU process the data generate a response APDU and return control to the JCRE
21
The second communication model relies on a subset of the J2SE RMI distributed-object model
a server(jc applet) application creates and makes accessible remote objects a client(host application) application obtains remote references to remote objects, and then invokes remote methods on them.
22
23
* http://java.sun.com/products/javacard/smartcards.html 24
25
References:
26
Any Questions............?
27
28