Pregunta

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 smartcard is version V4.2C

My problem I have all the functionality to work but I simply don't know how to detect if the Smart Card is in the Smart Card Reader.

I have tried to search on google but with no result so I hope some of you can help me.

¿Fue útil?

Solución

Well, if I google for "C# smartcard" the first link which pops up is a code project article. It appears that the project provides events for detection of smartcard insertion/removal which is probably what you want.

Otros consejos

Usually you would want to use the PC/SC framework for talking with a smart card, but it can be quite some work to implement from scratch yourself.

I would recommend to look into some existing project and get some ideas from there, as there are many projects that implements PC/SC in .NET.

Take this one from CodeProject for example.

Have a look at http://code.google.com/p/pcsc-sharp/

Works very well for me on 32bit and 64bit platforms, and supports mono too.

Besides the use of PC/SC to detect the presence of the card , from your description that doesn't seem very secure if the presence of the card in the reader is the sole condition for (un?)locking the PC without alarm, unless you scan periodically the card for some randomly generated data or some similar process which would ensure that the card isn't present since onbly the card could generate the right random sequence?

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top