Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
293 views

Java Card Unit Testing

I'd like to run my Java Card applications in some kind of emulated/simulated environment to be able to run JUnit (or any other unit test framework) tests on them. Does anyone know of such a tool? I'd ...
3
votes
3answers
228 views

Java card 3 vendors, any cards available?

I'm looking for java cards running 3.0 with 64k or more (128 is better) of NV memory. I can't find any card manufacturers who make such a card... Even a Java card 2.0 with 128k would be helpful. ...
3
votes
2answers
1k views

getting started with java card on sim cards

I'm looking to write a simple beginner program using Java Card to run on sim cards. Can anyone point me to some very basic information on getting started? I've seen some descriptions of the toolkit ...
2
votes
3answers
76 views

How to store data larger than 128 byte in JavaCard

I can't write data at index above 128 in byte array. code is given below. private void Write1(APDU apdu) throws ISOException { apdu.setIncomingAndReceive(); byte[] apduBuffer = ...
2
votes
2answers
202 views

How to get started with Java Cards?

I'm new to smart-card development. Please help me understand how to get started. What's the relationship between Java Card and JCOP? How do I map a JCOP version to a GlobalPlatform Card ...
2
votes
3answers
212 views

which mobile phone SIMs actually support javacard today?

i wonder on which smartcards i can actually run javacard? afaik it requires the "open platform" OS, but: which USIM-cards for mobile phones today (especially in germany) do actually support this?
2
votes
3answers
470 views

java application reads data from card reader

If someone wants to write a java application that interacts with a physical device, specifically a reader (e.g. as when you go in a hotel, gym, bank etc and you pass the card through a reader and the ...
2
votes
2answers
459 views

Applet ID's and APDU in Java Card

In my project i want to write biometric data (like fingerprint template) on a smart card. After some good study i chose Java card for my project. But i am new to this platform and know very little ...
2
votes
0answers
260 views

JavaCard random number generation speed

I'm implementing an authentication protocol using ECDSA on javacard. The funniest thing I noticed was the "secure random number genrator" takes 700ms for execution. This can be considered as ...
1
vote
1answer
90 views

JavaCard> sign and verify

Can someone give me a small advice on how to make a signature with javacard and verify it? I guess I am doing something wrong with the signature generation and verification: ... ...
1
vote
3answers
76 views

How to convert object of class into hexadecimal array in java

An object of class having some data and I am gone write that object into java card. I am having a function that convert hexadecimal data into byte array and then write that data to smart card using ...
1
vote
0answers
65 views

Strange Invalid CLA command (6E 00) on Java SmartCard IO

I am writing a smart card application and after a successful selection of the application with its AID, when it gets to sending Get Processing Options I get 6E 00 as response - Invalid CLA command. ...
1
vote
1answer
189 views

how to write and read data from smart card using java card apdu

I have written an applet and installed it in smart card. But I don't know how to read and write data to smart card? private void readName(APDU apdu) throws ISOException { byte[] apduBuffer = ...
1
vote
2answers
581 views

How to send APDU command using T=CL(ISO7816) protocol with ISO14443 layer

I want connect with card on T=CL protocol with ISO14443A layer. And, for example, send to it APDU-command { 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } - it must return card ID. For it I'm using ...
1
vote
1answer
42 views

How to avoid card termination while learning about GlobalPlatform?

The GlobalPlatform smart-card standard defines irreversible state changes, such as card termination after too many failed authentications or initial card initialization. How does one learn about ...
1
vote
1answer
299 views

Required Things to start Smartcard Programming Using Javacard

I wanted to start with the smartcard programming soon. Please help me the things required for starting the learning using javacard. Which IDE (If any IDE Supports),Software and Hardware related ?. ...
1
vote
1answer
147 views

Can SIM Cards be read by a Smart Card Reader [closed]

This isn't really a programming question but it relates to Java Card. If you attach a SIM card to a strudy card. Could you read that with a standard smart card reader/through JavaCard? [Note: If this ...
1
vote
2answers
458 views

Java card function to get a smart cards GUID/UUID?

I am trying to write a simple javacard app that allows you to read the cards GUID/UUID using a simple APDU command. As I have come to understand each smart card contains a GUID which is unique to the ...
1
vote
4answers
2k views

Create PrivateKey from byte array

Is there a way to generate PrivateKey from byte array? I got this byte array using getEncoded() method, but now I have to convert it back to PrivateKey. Thanks, Vuk
1
vote
1answer
424 views

Ebook Java Card 3?

i need to use Java card in my application for check user information and handle user information or handle some business logic example store user borrow book in his card. . . but i new in java card, i ...
1
vote
0answers
135 views

SIM Application ToolKit

I require to develop a SIM Applocation which is capable for Cell ID for the underlying cell to my server. I wanted to enquire whether this possible. If possible can what kind of simulator can we use ...
1
vote
2answers
104 views

Webapps and Smart Card Interaction

A few weeks ago, I tried to ask a similar question, but phrased it incorrectly, so I'm trying again. I still don't think what I want is possible, but I'm asking anyhow. Given a web application ...
1
vote
0answers
86 views

JavaCard monitoring folder

I want to write a two way application: applet for javacard and an application in C#. I've got the C# covered but i want to know if with JavaCard i can monitor a folder on the memory and how would i go ...
1
vote
3answers
382 views

Smart Card Query

I need to know what kind of Java Smart Card to buy and where I can get some from? What are the factors i should consider while choosing a card / vendor? Thanks
0
votes
2answers
100 views

How to install applet on smart card using java

Is there any way to load .cap(converted applet) design in java card in to java and then install applet from that .cap(converted applet) file into smart card? I am having .cap file that is converted ...
0
votes
2answers
59 views

What is Max and Min size of Applet in java card

I am working on java card and i want to know what is max and min size of an applet in java card and on which parameter it depends?How many applet we can install on smart card? I am using smart card ...
0
votes
0answers
44 views

java card terminal [closed]

I'm searching for java card pos terminals but i don't know which to buy. So far i found those; cards -> http://www.alibaba.com/product-gs/502271268/Just_Click_and_win_java_card.html pos machine -> ...
0
votes
1answer
40 views

Convert byte to short in JavaCard

In java card only small data types are used (byte and short). I am trying to convert byte to short such that i can use it for checking condition,etc. When byte is converted into short using type cast ...
0
votes
1answer
65 views

Not getting response while reading data from smart card using JavaCard and APDU

I studied all API and specification of java card and I write a code for read data from smart card. But I don't know where it return response. The code I have written is given below. private void ...
0
votes
1answer
75 views

can some one tell me how to read data in smart card using java card? I have this code i am using java card 2.2

I am new to java card. i have this code.....so please tell me how to read data from smart card using java card private void readName(APDU apdu) throws ISOException { byte[] ...
0
votes
1answer
99 views

Please can someone tell me how to write data to smart card using java card?with example [closed]

can some one tell me how to write data in smart card using java card? i have this code i am using java card 2.2 private void writeName(APDU apdu) throws ISOException { ...
0
votes
1answer
117 views

How to store data on javacard?

I'm experimenting with applet for JavaCard - it's very simple SCWS serverlet(basically template from Gemalto Dev Suite). I want it to store some data on card - how to do it? I found only some ...
0
votes
1answer
60 views

Is it possible to query a GlobalPlatform smart card for its remaining persistent memory?

I have a JavaCard and can call JCSystem.getAvailableMemory(MEMORY_TYPE_PERSISTENT) and return that from my applet, but I want an exact value if its over 32767 bytes.
0
votes
1answer
260 views

Where does the Java Card “Converter” Tool look for EXP files?

using the JavaCard Converter tool, I kept getting errors like error: export file rmi.exp of package java.rmi not found. and error: export file framework.exp of package javacard.framework not ...
0
votes
1answer
301 views

Java card purchase query

I want to develop a android application in which i have to use java card. Which development kit i have to buy for ?? I want to buy java card , which implement Java Card 2.1.1 specifications and ...
0
votes
1answer
106 views

Problem with javacard WebApplication

I'm trying to build a javacard webapplication with netbeans, but I'm getting a build error and don't know how to fix it: [Error] Unable to parse the class file ...
0
votes
1answer
327 views

Java Card: Problems selecting app with APDUtool

I'm new to Java Card programming and I'm having some problems getting started. I'm using Eclipse with EclipseJCDE. I made a simple java card applet and used EclipseJCDE's tools to create a .cap file ...
0
votes
1answer
97 views

are sim cards supporting javacard avalaible? where can i get it?

are sim cards supporting javacard avalaible? where can i get it?
0
votes
1answer
420 views

Reading data from a Smart Card (preferably with Java)

I would like to be able to read a few bytes of unencrypted data which is stored in a smart card. I have the reader and know that the Sun version of Java 6 includes javax.smartcardio and I have read a ...
0
votes
1answer
88 views

apduToolTask cannot be found

i am new to java card platform and presently i am using java card classic edition v 3.0.1 and when i am using Apache ANT command - ant all to build the build.xml file, i am getting the following ...
0
votes
1answer
84 views

Why Java Card 2.x (now Classic Edition) doesn't have a Map implementation?

Sure the JSE HashMap has an "expensive" hashing function and its variable size could potentially cause out of memory errors but what about a constant size Map with a simple hashing relative to its ...
0
votes
1answer
616 views

Smartcard reader naming: when removing any reader, the name of the rest changes

I am writting a smartcard application. This application connects card in reader and sometimes works with it. I need to watch when reader is no longer available (either card is ejected or reader is ...
0
votes
1answer
736 views

Java Card Conversion

I have written a Java Card App and want to upload it to a Card. But the card supports Java 2.1.1 standard. So I am looking for a way of generating a 2.1.1 Compliant CAP file with my 2.2.2 Kit I have ...
0
votes
2answers
1k views

How do I multiply (and divide) BCD numbers by 10^x

I have a large (12 digit) BCD number, encoded in an array of 6 bytes - each nibble is one BCD digit. I need to multiply it by 10^x, where x can be positive or negative. I know it can be done by ...
-1
votes
1answer
44 views

Tell me how to avoid an applet to reinstall in smart card when i run code? [closed]

i write a applet code in java card for smart card.when i run it it install on previous applet and override data on it.i lost data every time when i run the code.tell me how to avoid it?