在系统上列出所有智能卡读卡器(Alcor Micro读卡器问题)

时间:2013-04-11 00:14:04

标签: c# hardware smartcard smartcard-reader

我已经让这个软件在生产中运行多年,之前从未见过这个问题。我刚收到一台新的笔记本电脑(HP EliteBook 8470p),内置 Alcor Micro USB智能卡读卡器

下面的代码将列出系统上的所有读者,似乎工作正常。我们的一些系统将有3或4个读卡器插入一台计算机。它已经过十几个型号的测试,没有任何问题。

奇怪的是,只有在插入智能卡时才会列出Alcor阅读器。如果我在设备管理器中查看它,它也不会显示在“智能卡读卡器”下,直到插入卡(除非我转到视图>显示隐藏设备)。

有谁知道为什么会这样,或者是否有办法确保它在我的软件中列出?

谢谢。

代码:

[DllImport("WINSCARD.DLL", EntryPoint = "SCardEstablishContext", CharSet = CharSet.Unicode, SetLastError = true)]
static internal extern uint EstablishContext(ScopeOption scope, IntPtr reserved1,
    IntPtr reserved2, ref SmartcardContextSafeHandle context);

[DllImport("WINSCARD.DLL", EntryPoint = "SCardListReaders", CharSet = CharSet.Unicode, SetLastError = true)]
static internal extern uint ListReaders(SmartcardContextSafeHandle context, string groups,
    string readers, ref int size);

private bool EstablishContext()
{
    if ((this.HasContext))
    {
        return true;
    }
    this._lastErrorCode =
        (SmartcardErrorCode)UnsafeNativeMethods.EstablishContext(ScopeOption.System,
        IntPtr.Zero, IntPtr.Zero, ref this._context);
    return (this._lastErrorCode == SmartcardErrorCode.None);
}

public ArrayList ListReaders()
{
    ArrayList result = new ArrayList();

    //Make sure a context has been established before 
    //retrieving the list of smartcard readers.
    if (this.EstablishContext())
    {
        //Ask for the size of the buffer first.
        int size = this.GetReaderListBufferSize();
        //Allocate a string of the proper size in which 
        //to store the list of smartcard readers.
        string readerList = new string('\0', size);
        //Retrieve the list of smartcard readers.
        this._lastErrorCode =
            (SmartcardErrorCode)UnsafeNativeMethods.ListReaders(this._context,
            null, readerList, ref size);

        if ((this._lastErrorCode == SmartcardErrorCode.None))
        {
            //Extract each reader from the returned list.
            //The readerList string will contain a multi-string of 
            //the reader names, i.e. they are seperated by 0x00 
            //characters.
            string readerName = string.Empty;
            for (int i = 0; i <= readerList.Length - 1; i++)
            {
                if ((readerList[i] == '\0'))
                {
                    if ((readerName.Length > 0))
                    {
                        //We have a smartcard reader's name.
                        result.Add(readerName);
                        readerName = string.Empty;
                    }
                }
                else
                {
                    //Append the found character.
                    readerName += new string(readerList[i], 1);
                }
            }
        }
    }
    return result;
}
是的,这段代码是由我猜测的其他人(由于评论过多)在其他地方发现的。我对它有些熟悉,但从未深入了解它。我已经尝试过对它进行一些调整,但根本无法列出Alcor阅读器。

谢谢!

1 个答案:

答案 0 :(得分:3)

好的,打开赏金后我立刻觉得很蠢。我花了一段时间从软件的角度看这个并且放弃了一段时间 - 当我回来重新审视这个时,我认为它可能适合赏金。

我决定仔细看看我的BIOS选项,猜猜是什么?那里有一个选项,说“开启智能卡读卡器:a)插入卡时,b)始终”。我把它改为“永远”,它的确有效。哎呀

它不会让我删除我的问题,因为它现在有赏金,但这基本上是我的答案。感谢您的意见/建议。