views:

205

answers:

3

Does anyone have experience integrating SmartCard authentication in their Win32 apps? If so, are there any preferred libraries?

+1  A: 

Well I guess that you have an SmartCard reader ... if so (and if you don't have one I don't know how you are going to manage this) then it must have some interface, RS232, USB, TCP/IP ... any one will do.

Communication protocol usually is available at SmartCard reader manufacturer. Few lines, and you will have it working in Delphi.

igors
+2  A: 

Try SecureBlackbox, A component that works fine for me, a second choice can be Delphi PC/SC SmartCard Component 0.91.

try

RRUZ
A: 

You need to read the developer manual that comes with reader you're going to use. It might only use PC-SC (by MS) to communicate, if so you can use the component specified by RRUZ, however it doesn't work with D2009. Otherwise you'll need to use API provided by SDK.

Ertugrul Tamer Kara