bit
bit

Reputation: 963

CSP Provider Name

how can I get CSP provider name of my connected smartcard?

I couldn't access to registry windows so I'm find some way to achieve that information through win API.

I've already seen something about SCardGetCardTypeProviderName but it seems impossibile to find a complete example in C#.

Upvotes: 3

Views: 838

Answers (1)

Dais3d
Dais3d

Reputation: 11

You can use certutil.

Something like this:

c:> Certutil -csplist

It lists all CSP providers that currently exist on your PC.

Upvotes: 1

Related Questions