如何使用.net中的gemalto智能卡(axaltocm.dll)的minidriver使用方法
void ChangeReferenceData(byte mode, byte role, byte[] oldPin,byte[] newPin, int maxTries);
我已经从Windows Update安装了Gelamto minidriver。
基本上,我想使用ChangeReferenceData方法更改管理员密钥。
请帮忙。
最佳答案
您可以安装Gemalto SDK
http://www.gemalto.com/products/dotnet_card/resources/development.html
添加CardModule_stub.dll作为参考
使用MSCM服务:
CardModuleService服务=(CardModuleService)Activator.GetObject(typeof(CardModuleService),@“ apdu:// selfdiscover / MSCM”)
service.ChangeReferenceData(.......)
关于c# - 如何在.net中导入axaltocm dll [gemalto .net卡],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16895682/