Tagged Questions

A smartcard is a card with an embedded chip that may store cryptographic keys and/or perform cryptographic functions. Smartcards are often use as employee ID badges or in contactless credit/debit cards.

learn more… | top users | synonyms

52
votes
1answer
1k views

Blackberry smartcard reader example

I am writing an app for BlackBerry that utilizes a BlackBerry smartcard reader. There is not much documentation on the subject, so I'd really like if someone could give me starting examples. ...
18
votes
1answer
708 views

How to write smart card with pyscard

I'm using reader/writer acr38f and my smart card is SLE4418. How do I read and write text to my smart card? For example: Hello World! apdu = [0XFF, 0X20,0x00,0x00,0x02, 0x00, 0x00] response, ...
10
votes
1answer
2k views

NFC card emulation Android

the Nexus S device NXP PN544 NFC controller supports not only SWP for UICC based SE, but also the S2C (aka NFC-WI) for the external, e.g. micro SD card SE. Does anybody know how this can be enabled ...
5
votes
4answers
2k views

Access restriction on sun.security.pkcs11.SunPKCS11

I'm trying to setup a PKCS11 provider for accessing a smartcard. I installed a PKCS11 library on my system and followed the instructions in the Java PKCS#11 Reference Guide. In the reference they ...
5
votes
2answers
1k views

How do you write / read to a smartcard?

Is there an Open Source library for writing and reading data in C# from a smartcard using a smartcard reader? My smartcard model is mifare1k and my reader is ucr122u.
5
votes
3answers
2k views

starting smartcard programming

How could one get started with smartcards programming? I am asking here about all the toolkit he needs in order to get started: books, tutorials, hardware etc. I am planning in playing around with a ...
5
votes
6answers
10k views

Common Access Card (CAC) Authentication Using Java

I'm bascially looking for someplace to start learning how to interface with a government CAC card using java. Ultimately, my goal is to find out how to use CAC card authentication (by PIN number) to ...
4
votes
1answer
1k views

ASP.NET MVC 2 and request client certificate (Smart Card authentication)

I need to capture user's X.509 certificates from their cards and map to a user table for forms authentication in ASP.NET MVC. I have created an MVC (ver 2) project in VS 2008, configured to run as a ...
4
votes
2answers
2k views

CAC Smartcard Reauthenticate

We have one browser-based application where we want to make the user reauthenticate when they enter it. So when they access that URL we want them to be presented with the PIN prompt so they have to ...
3
votes
0answers
140 views

Java and contactless smartcards

I'm upgrading an existing embedded application (a Ricoh MFP) to support both Omnikey 5321 v2 and Omnikey 5325 card readers for authentication purposes. For now, I'll leave the 5325 model aside (but ...
3
votes
3answers
423 views

Django development server smart card authentication

I would like to use smart card based authentication on the Django development server, as it is the universally accepted means of authentication where I live. With Apache i can enable it by creating a ...
3
votes
1answer
290 views

SIM Application Toolkit Creation

I want to create an STL or Sim application toolkit, which will create a menu in SIM card and you can set to send USSD data when a menu created. I tried everything on google, nothing works. I have ...
3
votes
3answers
723 views

Is there a free virtual SmartCard which I could use to run some tests?

I imagine this makes no difference, but I will try to access it using a Java application. UPDATE: I'll use smart cards in a public/private keys encryption system.
3
votes
1answer
1k views

How to make php application to require smart card authentication

I can make browser to force authentication with smart card eg ID-card when php file is protected with SSLVerifyClient in apache conf. Now i need to display index.php usually without requiring smart ...
3
votes
1answer
381 views

Smartcard Driver (KMDF with SCardLib) Issues

I'm developing Smartcard Driver using KMDF and SCardlib, I used the WDK Smarcard Sample as reference, I think I implemented all of the callbacks correctly except for CardPower and CardTracking. (My ...
3
votes
7answers
5k views

How do I read the PAN from an EMV SmartCard from Java

I need to read account number from Maestro/Mastercard with smart card reader. I am using Java 1.6 and its javax.smartcardio package. I need to send APDU command which will ask EMV application stored ...
2
votes
3answers
75 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
1answer
161 views

Accessing smartcard keystore in an applet, through a js call

I am attempting to access the smartcard keystore, by an applet, through a js call. I am searching for best pratices, and hopefully a guide, minding the security issues. What I can and cannot do in it? ...
2
votes
1answer
58 views

What is Private Key Challenge?

When i reading about smartcards i came across this term called private key challenge. Private key challenge – to ensure the certificate is bound to the token to which it was issued and has not ...
2
votes
0answers
150 views

Smart Card enable a PHP site hosted on IIS 6?

I have been doing some research on this the past couple days and have yet to find a solution. I have seen suggestions that include the php Exec() function to call an outside application to handle ...
2
votes
2answers
731 views

C# smartcards programming

How should I start to programm in C# (.NET) for smartcards? For the beginning I just need to know, what is the name of Card Reader (e.g. Omnikey) and print that out. Thanks for the answer, Ales.
2
votes
3answers
462 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
0answers
91 views

where do I buy low quantities of smart cards? [closed]

I need to buy a few smart cards (under 5) for some development work. I've got readers and I'd prefer not to buy one of the expensive SDK's offered by several companies. I'm hoping to get some help ...
2
votes
2answers
453 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
2answers
332 views

How to specify alias name in system property while making 2way SSL con?

I am trying to run a java client with 2way SSL which uses CAC card as keystore for the client. I have addded the following system property in my client program to make it work and change the ...
2
votes
3answers
378 views

CAC Client Application Authentication in Python

I am building a python application to pull data from a website. The application has to authenticate(HTTPS/SSL) with a CAC card and pin in order to make requests. Am I correct in my assumptions that ...
2
votes
3answers
609 views

Has anyone got a tutorial up on getting your own smartcard and getting pkcs#11 working on it?

Has anyone got a tutorial up on getting your own smartcard and getting pkcs#11 working on it? In Linux? (Windows would be fine too). Most of the vendors seem to assume you'll be wanting enough for ...
2
votes
3answers
2k views

PCSC-Lite Codes on Windows

I've successfully built a program that can read Mifare 1K Card using Qt on Linux. So now, I would like it to run on Windows. From what I've gathered, there's no PCSC-Lite port on Windows and I need to ...
2
votes
1answer
347 views

NPLogonNotify not called for smartcard login (Windows 7)

I have some code which acts as a network provider and can intercept both traditional logins and smartcard logins via the NPLogonNotify callback. This is running on XP (32 bit). I am porting to ...
2
votes
5answers
3k views

How to write files on smart cards in C#

I'd like to write to file in a processor smart card that accepts APDU commands. Do you know any examples in C# or smartcard sdk? Has anyone used http://code.google.com/p/pcsc-sharp/?
2
votes
2answers
6k views

Certificates from SmartCard in C#

Hi How can I ensure to I am accesing the Certificates from my SmartCard and not form my personal certificate store in c#? and How can I make my RSACryptoProvider to utilize my smart card certificate ...
1
vote
0answers
56 views

java applet to sign (via token/smartcard) and upload documents to a servlet

Any directions on how to deal with this scenario: I have one web app that needs to upload a local file (not yet signed, a text file, for example), than sign it locally (so one applet) using the ...
1
vote
0answers
92 views

Programmatically using smartcard to login onto Active Directory (C#)

Here is my scenario: I have a client application running outside the domain, on a computer outside the domain. My application needs to prompt the user to login with smart-card, and use the x.509 ...
1
vote
0answers
89 views

Remote site and client private keys

I have a bit of a difficult situation in that I need a way for a client connected to an ASP.NET MVC site to sign and decrypt blobs with their private key, such that the server never sees the private ...
1
vote
3answers
74 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
62 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
97 views

Access certificate and private from pkcs#11 token or smart-card

I am doing an application, in c# 4, that has to sign a XML. I'd no great problems, until I bumped into this: accessing a smart-card/token to get their certificates and private keys. Nothing really out ...
1
vote
1answer
187 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
3answers
59 views

Linux equivalent of WinCrypt API

when I need to authenticate client applications against X.509 protected SSL, TLS and SSH based servers in Windows, I use the WinCrypt functions to handle the certificate interfacing functionality. ...
1
vote
1answer
51 views

Python Web Proxy that Supports PKCS#11

Does anyone know of a web proxy written in Python that will support SSL connections and will also support PKCS#11 tokens? I am in need of a proxy that will send SSL web requests using a PKCS#11 ...
1
vote
3answers
160 views

How to work with a Smart Card

My project I am working on a small program which has to set an alarm if the user locks the computer without removing the Smart Card from the computer. I am using C# with WPF and .Net 4.0 and my ...
1
vote
2answers
135 views

Can I get public/private key pair from a key container in smartcard?

Can I get the public/private key pair from a key container inside a smartcard using PKCS #11 or CryptoAPI?
1
vote
1answer
34 views

How does a tokend's probe() function work?

SecTokend.h declares a function CSSM_RETURN (*probe)(SecTokendProbeFlags flags, uint32 *score, char tokenUid[TOKEND_MAX_UID]); which is called by securityd at some point. But I can't find when and ...
1
vote
2answers
96 views

Do smart-card readers support all smart-cards models?

Do smart-cards require a different kind of reader depending on the model or do all readers support all kinds of smart-cards? Assuming I have a specific card model in mind, how do I find out what kind ...
1
vote
1answer
295 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
93 views

What is the purpose of the EFADN (abbreviated Dialing Number) file on SIM Card

When I was reading the book Smart Card Applications by Wiley and I came across the "EFADN file". The EFADN (abbreviated dialing number) file of a SIM can be used here as a typical example. This ...
1
vote
1answer
69 views

Is it possible to disable the automatic smart card minidriver installation for a specific smart card hardware ID in Windows?

I have a .NET application that uses WinSCard directly to communicate to a proprietary application on a smart card. When a card is first inserted, Windows notifies the user it is searching for ...
1
vote
3answers
363 views

Smartcard reader access from a web browser?

is it possible to access smartcard reader connected to a computer from a web browser running on the same machine, i.e. from an ActionScript, JavaScript or whatsoever script running therein? For ...
1
vote
2answers
156 views

Smartcard API in C# that's Linux Friendly

I currently have a project that operates in Windows using P/Invokes to call the Smartcard API; however, since I've now open-sourced the project and put it on Google Code, I'd be interested in making ...
1
vote
2answers
389 views

What is the meaning of 6E 00 when I send a command to a SmartCard

I try to access a SmartCard via C++. I got already the Connection and the CardHandle. But when I send an APDU Command via SCardTransmit, i'll get 6E 00 as the answer from the card. No matter which ...

1 2 3 4